A346964 Expansion of e.g.f. Product_{k>=1} exp(x^k) * (1 + x^k).
1, 1, 2, 7, 40, 257, 2086, 19567, 207572, 2451745, 32226922, 462314711, 7178502112, 120315808417, 2157566463950, 41277697722367, 838883560646476, 18020304830796737, 408135672764386642, 9723868266912217255, 242827969365094823192, 6345340713682009241281
Offset: 0
Keywords
Programs
-
Mathematica
nmax = 20; CoefficientList[Series[Product[Exp[x^k] * (1 + x^k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! nmax = 20; CoefficientList[Series[Exp[x/(1 - x)] * Product[(1 + x^k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! nmax = 20; CoefficientList[Series[Product[(1 + x^k) / (1 - x^k)^(EulerPhi[k]/k), {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! Table[n!*Sum[LaguerreL[k, -1, -1]*PartitionsQ[n-k],{k,0,n}], {n,0,20}]