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

A357524
Expansion of Product_{k>=1} 1 / (1 + mu(k)*x^k).
2
1, -1, 2, -1, 2, 0, 1, 2, 0, 3, 0, 4, 1, 4, 2, 4, 4, 4, 5, 6, 6, 6, 8, 8, 10, 9, 11, 12, 13, 14, 17, 17, 20, 19, 23, 24, 28, 27, 30, 34, 34, 40, 41, 47, 48, 50, 56, 62, 64, 71, 72, 80, 85, 91, 99, 104, 113, 112, 128, 135, 147, 153, 159, 176, 180, 196, 210, 220, 233, 240, 264
OFFSET
0,3
MATHEMATICA
nmax = 70; CoefficientList[Series[Product[1/(1 + MoebiusMu[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = (1/n) Sum[Sum[d (-MoebiusMu[d])^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 70}]
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Oct 02 2022
STATUS
approved