Skip to content

Commit d44f1a0

Browse files
authored
Correct name of fibonaccinum function in README.md
1 parent a3a2a05 commit d44f1a0

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
@@ -15,7 +15,7 @@ This library provides the following functions:
1515
- `combinations(a)`: returns combinations of all order by chaining calls to `Base.combinations(a,n)`;
1616
- `derangement(n)`/`subfactorial(n)`: returns the number of permutations of n with no fixed points; always returns a `BigInt`;
1717
- `doublefactorial(n)`: returns the double factorial n!!; always returns a `BigInt`;
18-
- `fibonacci(n)`: the n-th Fibonacci number; always returns a `BigInt`;
18+
- `fibonaccinum(n)`: the n-th Fibonacci number; always returns a `BigInt`;
1919
- `hyperfactorial(n)`: the n-th hyperfactorial, i.e. prod([i^i for i = 2:n]; always returns a `BigInt`;
2020
- `integer_partitions(n)`: returns a `Vector{Int}` consisting of the partitions of the number `n`.
2121
- `jacobisymbol(a,b)`: returns the Jacobi symbol (a/b);

0 commit comments

Comments
 (0)