smooth-numbers

Algorithms to generate [smooth numbers]

crates.io docs.rs GitHub GitHub Workflow Status Dependencies status MIT license

Example

Compute the first 10 numbers whose prime factors are only 2 and 5:

```rust use smooth_numbers::*;

asserteq!( withprimes(&[2, 5], 10), [1, 2, 4, 5, 8, 10, 16, 20, 25, 32] ); ```