A303381 Expansion of Product_{n>=1} ((1 + (8*x)^n)/(1 - (8*x)^n))^(1/8).
1, 2, 18, 204, 1526, 15228, 146676, 1217880, 10322982, 106429420, 886934236, 7632390312, 72137002428, 600860144728, 5351962341672, 51402944345520, 411439139563526, 3624067316629836, 33666668386023244, 279519776297893512, 2480351338204454484
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..1000
Crossrefs
Programs
-
Maple
seq(coeff(series(mul(((1+(8*x)^k)/(1-(8*x)^k))^(1/8), k = 1..n), x, n+1), x, n), n = 0..25); # Muniru A Asiru, Apr 23 2018
-
Mathematica
nmax = 20; CoefficientList[Series[Product[((1 + x^k)/(1 - x^k))^(1/8), {k, 1, nmax}], {x, 0, nmax}], x] * 8^Range[0, nmax] (* Vaclav Kotesovec, Apr 23 2018 *)
-
PARI
N=66; x='x+O('x^N); Vec(prod(k=1, N, ((1+(8*x)^k)/(1-(8*x)^k))^(1/8)))
Formula
a(n) ~ 2^(3*n - 81/32) * exp(sqrt(n)*Pi/2^(3/2)) / n^(25/32). - Vaclav Kotesovec, Apr 23 2018
Comments