pub fn unique_prime_factors(n: u64) -> Vec<u64>
Returns the unique prime factors of n in ascending order.
n
0 and 1 return an empty vector in this crate.
0
1