A316144 Expansion of e.g.f. Product_{k>=1} ((1 + (exp(x)-1)^k) / (1 - (exp(x)-1)^k))^2.
1, 4, 28, 268, 3148, 43564, 692428, 12390508, 245896588, 5351817004, 126614238028, 3232332423148, 88500275727628, 2585371577628844, 80227707005300428, 2634361286274638188, 91223969834203056268, 3321457538305952791084, 126817592900018186967628
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)/(1-(Exp[x]-1)^k))^2, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
Comments