A316142 Expansion of e.g.f. Product_{k>=1} (1 + (exp(x)-1)^k)^2.
1, 2, 8, 56, 476, 4832, 58508, 815936, 12750956, 220610432, 4195325708, 86976996416, 1949966347436, 46965887762432, 1208922621624908, 33111231803362496, 961354836530983916, 29490401681798152832, 952900154176192244108, 32342850619899263226176
Offset: 0
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..400
Programs
-
Mathematica
nmax = 20; CoefficientList[Series[Product[(1+(Exp[x]-1)^k)^2, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
Comments