A295792 Expansion of e.g.f. Product_{k>=1} ((1 + x^k)/(1 - x^k))^(1/k).
1, 2, 6, 28, 152, 1008, 7936, 70208, 689664, 7618816, 92013824, 1202362368, 17053410304, 258928934912, 4197838491648, 72840915607552, 1334630802489344, 25799982480556032, 527187369241870336, 11292834065764450304, 253498950169144590336, 5965951790211865772032, 146341359815078034538496
Offset: 0
Keywords
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..445
Programs
-
Maple
a:=series(mul(((1+x^k)/(1-x^k))^(1/k),k=1..100),x=0,23): seq(n!*coeff(a,x,n),n=0..22); # Paolo P. Lava, Mar 27 2019
-
Mathematica
nmax = 22; CoefficientList[Series[Product[((1 + x^k)/(1 - x^k))^(1/k), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
Comments