OFFSET
0,11
COMMENTS
Number of partitions of n into odd squarefree parts > 1.
LINKS
Joerg Arndt, Matters Computational (The Fxtbook), section 16.4.3 "Partitions into square-free parts", pp.351-352
Eric Weisstein's World of Mathematics, Squarefree
FORMULA
G.f.: Product_{k>=2} 1/(1 - mu(2*k-1)^2*x^(2*k-1)).
EXAMPLE
a(13) = 3 because we have [13], [7, 3, 3] and [5, 5, 3].
MATHEMATICA
nmax = 76; CoefficientList[Series[Product[1/(1 - MoebiusMu[2 k - 1]^2 x^(2 k - 1)), {k, 2, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 27 2016
STATUS
approved