A086290 Minimal exponent in prime factorization of 7-smooth numbers.
0, 1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 1, 1, 4, 1, 1, 1, 1, 2, 3, 1, 1, 5, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 6, 1, 2, 1, 1, 4, 1, 1, 1, 1, 2, 1, 2, 1, 1, 3, 1, 7, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 3, 1, 2, 1, 5, 1, 1, 1, 8, 1, 1, 2, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 2, 1, 1
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
minExp[1] = 0; minExp[n_] := Min @@ Last /@ FactorInteger[n]; minExp/@Select[Range[500], Max[Transpose[FactorInteger[#]][[1]]] <= 7 &] (* Amiram Eldar, Jan 06 2020 *)