Algorithms to generate [smooth numbers]
Compute the first 10 numbers whose prime factors are only 2 and 5:
2
5
```rust use smooth_numbers::*;
asserteq!( withprimes(&[2, 5], 10), [1, 2, 4, 5, 8, 10, 16, 20, 25, 32] ); ```