Metadata-Version: 2.4
Name: factorial-sum
Version: 0.1.0
Summary: Efficient computation of factorial sums using a novel recursive identity
Author-email: Abdelkrim Meziani <ramziabdelkrim@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/factorial-sum
Project-URL: Documentation, https://pypi.org/project/factorial-sum/
Project-URL: Source, https://github.com/yourusername/factorial-sum
Keywords: factorial,mathematics,combinatorics,recursion,number-theory
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file


# Factorial Sum

Efficient computation of factorial sums using a novel recursive identity discovered by Abdelkrim Meziani.

## Installation

```bash
pip install factorial-sum
```

## Usage

```python
from factorial_sum import factorial_sum

print(factorial_sum(5))  # Output: 153
```

## Features

- Implements the identity S(n) = n² * (n-2)! + S(n-3)
- Faster than naive summation for large n
- Includes caching for performance
- Fully tested with pytest

## Author

**Abdelkrim Meziani**
