pub fn factorization(n: u64) -> Vec<(u64, u32)>
Returns the prime factorization of n as (prime, exponent) pairs.
n
(prime, exponent)
0 and 1 return an empty vector in this crate. Results are sorted in ascending prime order.
0
1