A382421 The product of exponents in the prime factorization of the noncubefree numbers.
3, 4, 3, 3, 5, 3, 4, 3, 3, 6, 6, 4, 4, 3, 5, 3, 6, 4, 3, 3, 7, 3, 3, 8, 3, 5, 4, 3, 4, 3, 3, 6, 6, 4, 9, 5, 3, 4, 5, 3, 3, 8, 3, 3, 4, 3, 10, 3, 3, 4, 3, 6, 8, 3, 4, 3, 3, 3, 5, 6, 4, 3, 3, 3, 7, 6, 8, 4, 3, 5, 3, 12, 3, 6, 3, 3, 4, 3, 5, 5, 3, 4, 6, 6, 9, 3, 3
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
s[n_] := Times @@ FactorInteger[n][[;; , 2]]; noncubeFreeQ[n_] := Max[FactorInteger[n][[;; , 2]]] > 2; s /@ Select[Range[600], noncubeFreeQ]
-
PARI
list(kmax) = {my(e); for(k = 2, kmax, e = factor(k)[, 2]; if(vecmax(e) > 2, print1(vecprod(e), ", "))); }