smooth-numbers
Algorithms to generate smooth numbers
See the definition of smooth number on Wikipedia and MathWorld.
Examples
Compute the first 10 3-smooth numbers, i.e. numbers of the form 2^i * 3^j:
use *;
assert_eq!;
Compute the first 10 numbers of the form 2^i * 5^j:
use *;
assert_eq!;