numberlab 0.1.9

A collection of numerical algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Arithmetic sequence
pub mod arithmetic;
/// Factorial sequence [OEIS A000142](https://oeis.org/A000142)
pub mod factorial;
/// Fibonacci sequence [OEIS A000045](https://oeis.org/A000045)
pub mod fibonacci;
/// Geometric sequence
pub mod geometric;
/// Lucas sequence [OEIS A000032](https://oeis.org/A000032)
pub mod lucas;
/// Recaman sequence [OEIS A005132](https://oeis.org/A005132)
pub mod recaman;
/// Sylvester's sequence [OEIS A000058](https://oeis.org/A000058)
pub mod sylvester;
/// Tribonacci sequence [OEIS A000073](https://oeis.org/A000073)
pub mod tribonacci;