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”).

A342694
a(n) = Sum_{d|n} d * mu(d) * floor(n/d^2).
0
1, 2, 3, 2, 5, 4, 7, 4, 6, 6, 11, 3, 13, 8, 12, 8, 17, 4, 19, 10, 15, 12, 23, 6, 20, 14, 18, 14, 29, 2, 31, 16, 24, 18, 30, 12, 37, 20, 27, 15, 41, 16, 43, 22, 25, 24, 47, 15, 42, 16, 36, 26, 53, 16, 45, 21, 39, 30, 59, 8, 61, 32, 35, 32, 55, 19, 67, 34, 48, 19, 71, 24, 73, 38
OFFSET
1,2
COMMENTS
If p is prime, a(p) = Sum_{d|p} d * mu(d) * floor(p/d^2) = 1*1*p + p*(-1)*0 = p.
EXAMPLE
a(10) = Sum_{d|10} d * mu(d) * floor(10/d^2) = 1*1*10 + 2*(-1)*2 + 5*(-1)*0 + 10*1*0 = 6.
MATHEMATICA
Table[Sum[k*MoebiusMu[k] Floor[n/k^2] (1 - Ceiling[n/k] + Floor[n/k]), {k, n}], {n, 80}]
CROSSREFS
Cf. A008683 (mu).
Sequence in context: A195637 A181861 A365099 * A212831 A072969 A139712
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, May 18 2021
STATUS
approved