Skip to content

Commit 7620278

Browse files
committed
Update README.md with the new name of the function
1 parent e533608 commit 7620278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This library provides the following functions:
1111
- `doublefactorial(n)`: returns the double factorial n!!; always returns a `BigInt`;
1212
- `fibonacci(n)`: the n-th Fibonacci number; always returns a `BigInt`;
1313
- `hyperfactorial(n)`: the n-th hyperfactorial, i.e. prod([i^i for i = 2:n]; always returns a `BigInt`;
14+
- `integer_partitions(n)`: returns a `Vector{Int}` consisting of the partitions of the number `n`.
1415
- `jacobisymbol(a,b)`: returns the Jacobi symbol (a/b);
1516
- `lassalle(n)`: returns the nth Lassalle number A<sub>n</sub> defined in [arXiv:1009.4225](http://arxiv.org/abs/1009.4225) ([OEIS A180874](http://oeis.org/A180874)); always returns a `BigInt`;
1617
- `legendresymbol(a,p)`: returns the Legendre symbol (a/p);
@@ -19,7 +20,6 @@ This library provides the following functions:
1920
- `multinomial(k...)`: receives a tuple of `k_1, ..., k_n` and calculates the multinomial coefficient `(n k)`, where `n = sum(k)`; returns a `BigInt` only if given a `BigInt`;
2021
- `primorial(n)`: returns the product of all positive prime numbers <= n; always returns a `BigInt`;
2122
- `stirlings1(n, k)`: the signed `(n,k)`-th Stirling number of the first kind; returns a `BigInt` only if given a `BigInt`.
22-
- `partitions(n)`: returns a `Vector{Int}` consisting of the partitions of the number `n`.
2323

2424
Young diagrams
2525
--------------

0 commit comments

Comments
 (0)