OFFSET
0,9
COMMENTS
Convolution inverse of A073576.
The difference between the number of partitions of n into an even number of distinct squarefree parts and the number of partitions of n into an odd number of distinct squarefree parts.
FORMULA
G.f.: Product_{k>=1} (1 - x^A005117(k)).
MAPLE
with(numtheory):
b:= proc(n) option remember; `if`(n=0, 1, add(add(d*
abs(mobius(d)), d=divisors(j)) *b(n-j), j=1..n)/n)
end:
a:= proc(n) option remember; `if`(n=0, 1,
-add(b(n-i)*a(i), i=0..n-1))
end:
seq(a(n), n=0..80); # Alois P. Heinz, Sep 20 2017
MATHEMATICA
nmax = 75; CoefficientList[Series[Product[1 - MoebiusMu[k]^2 x^k, {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Sep 19 2017
STATUS
approved