numberlab 0.1.9

A collection of numerical algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Hexagonal sequence [OEIS A000384](https://oeis.org/A000384)
pub mod hexagonal;
/// Lazy caterer sequence [OEIS A000124](https://oeis.org/A000124)
pub mod lazy_caterer;
/// Pentagonal sequence [OEIS A000326](https://oeis.org/A000326)
pub mod pentagonal;
/// Square sequence [OEIS A000290](https://oeis.org/A000290)
pub mod square;
/// Star sequence [OEIS A003154](https://oeis.org/A003154)
pub mod star;
/// Stella octangula sequence [OEIS A007588](https://oeis.org/A007588)
pub mod stella_octangula;
/// Triangular sequence [OEIS A000217](https://oeis.org/A000217)
pub mod triangular;