A296238 Expansion of Product_{k>0} (1 + x^(k*(3*k+1)/2)).
1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 2, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 2, 0, 2, 0, 2, 1, 1, 1, 0
Offset: 0
Keywords
Programs
-
Mathematica
nmax = 100; CoefficientList[Series[Product[(1 + x^(k*(3*k+1)/2)), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 10 2017 *)
-
PARI
N=66; x='x+O('x^N); Vec(prod(k=1, N, (1+x^(k*(3*k+1)/2))))