A316143 Expansion of e.g.f. Product_{k>=1} 1 / (1 - (exp(x)-1)^k)^2.
1, 2, 12, 92, 912, 10772, 148512, 2328692, 40842912, 791302772, 16767551712, 385382491892, 9542377300512, 253105962752372, 7156766466076512, 214814484529608692, 6819311473596695712, 228212485803422931572, 8028037725386962194912, 296094910181041530831092
Offset: 0
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..400
Programs
-
Mathematica
nmax = 20; CoefficientList[Series[Product[1/(1-(Exp[x]-1)^k)^2, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
Comments