login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A295832
Expansion of Product_{k>=1} ((1 + x^(2*k-1))/(1 - x^(2*k)))^k.
4
1, 1, 1, 3, 5, 8, 12, 20, 33, 50, 74, 114, 175, 257, 375, 555, 814, 1171, 1677, 2406, 3435, 4855, 6825, 9591, 13428, 18667, 25851, 35745, 49250, 67544, 92340, 125966, 171345, 232257, 313945, 423470, 569778, 764465, 1023231, 1366827, 1821756, 2422394, 3214318, 4257088, 5627086, 7422941
OFFSET
0,4
FORMULA
G.f.: Product_{k>=1} ((1 + x^(2*k-1))/(1 - x^(2*k)))^k.
G.f.: exp(Sum_{k>=1} x^k*((-1)^(k+1) + x^k)/(k*(1 - x^(2*k))^2)).
a(n) ~ exp(3 * (7*Zeta(3))^(1/3) * n^(2/3) / 4 + Pi^2 * n^(1/3) / (24 * (7*Zeta(3))^(1/3)) - Pi^4 / (12096 * Zeta(3)) + 1/12) * (7*Zeta(3))^(7/36) / (A * 2^(23/24) * sqrt(3*Pi) * n^(25/36)), where A is the Glaisher-Kinkelin constant A074962. - Vaclav Kotesovec, Nov 28 2017
MATHEMATICA
nmax = 45; CoefficientList[Series[Product[((1 + x^(2 k - 1))/(1 - x^(2 k)))^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 45; CoefficientList[Series[Exp[Sum[x^k ((-1)^(k + 1) + x^k)/(k (1 - x^(2 k))^2), {k, 1, nmax}]], {x, 0, nmax}], x]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 28 2017
STATUS
approved