A307462 Expansion of Product_{k>=1} (1+x^k)^((-1)^k*k^2).
1, -1, 5, -14, 36, -97, 246, -593, 1423, -3351, 7699, -17432, 38901, -85545, 185862, -399220, 848080, -1783682, 3716584, -7675916, 15722127, -31951330, 64452707, -129102947, 256876062, -507854808, 997954125, -1949631802, 3787674152, -7319306458, 14071371173
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..10000
Crossrefs
Programs
-
Mathematica
nmax = 40; CoefficientList[Series[Product[(1 + x^k)^((-1)^k*k^2), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 09 2019 *) nmax = 40; CoefficientList[Series[Product[(1 + x^(2*k))^(4*k^2) / (1 + x^(2*k - 1))^((2*k - 1)^2), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Apr 09 2019 *)
-
PARI
N=66; x='x+O('x^N); Vec(prod(k=1, N, (1+x^k)^((-1)^k*k^2)))
Formula
a(n) ~ (-1)^n * exp(2*Pi*n^(3/4)/3 + 3*Zeta(3)/(4*Pi^2)) / (4*n^(5/8)). - Vaclav Kotesovec, Apr 09 2019
Comments