login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A304365
Numbers k such that Sum_{d|k, d = 1 or not a perfect power} mu(k/d) is nonzero.
5
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,2
COMMENTS
First differs from A038109 at a(53) = 216, A038109(53) = 220.
Contains all prime powers (A000961).
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 3, 26, 254, 2557, 25663, 256765, 2567839, 25679023, 256791104, 2567912451, ... . Apparently, the asymptotic density of this sequence exists and equals 0.256791... . - Amiram Eldar, May 20 2023
LINKS
MATHEMATICA
Select[Range[100], Sum[If[GCD@@FactorInteger[d][[All, 2]]===1, MoebiusMu[#/d], 0], {d, Divisors[#]}]=!=0&]
PROG
(PARI) ok(n)={sumdiv(n, d, if(ispower(d), 0, moebius(n/d))) <> 0} \\ Andrew Howroyd, Aug 26 2018
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 11 2018
STATUS
approved