A304365 Numbers k such that Sum_{d|k, d = 1 or not a perfect power} mu(k/d) is nonzero.
1, 4, 9, 12, 18, 20, 25, 28, 36, 44, 45, 49, 50, 52, 60, 63, 68, 72, 75, 76, 84, 90, 92, 98, 99, 100, 108, 116, 117, 121, 124, 126, 132, 140, 144, 147, 148, 150, 153, 156, 164, 169, 171, 172, 175, 180, 188, 196, 198, 200, 204, 207, 212, 216, 220, 225, 228, 234
Offset: 1
Keywords
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
Select[Range[100],Sum[If[GCD@@FactorInteger[d][[All,2]]===1,MoebiusMu[#/d],0],{d,Divisors[#]}]=!=0&]
-
PARI
ok(n)={sumdiv(n, d, if(ispower(d), 0, moebius(n/d))) <> 0} \\ Andrew Howroyd, Aug 26 2018
Comments