A382968 The number of non-unitary prime divisors of the n-th biquadratefree number that is not squarefree.
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
f[k_] := If[k == 1, Nothing, Module[{e = FactorInteger[k][[;; , 2]]}, If[2 <= Max[e] <= 3, Count[e, _?(# > 1 &)], Nothing]]]; Array[f, 1000]
-
PARI
list(lim) = {my(e, emax); for(k = 2, lim, e = factor(k)[, 2]; emax = vecmax(e); if(emax > 1 && emax < 4, print1(#select(x -> x > 1, e), ", ")));}