A278557 Expansion of Product_{n>=1} (1 - x^(5*n))^24/(1 - x^n)^25 in powers of x.
1, 25, 350, 3575, 29575, 209381, 1312075, 7443825, 38854075, 188836375, 862496902, 3729343275, 15356254650, 60511763600, 229125615600, 836555203223, 2953900713000, 10113407774450, 33649438734125, 109017926343725, 344525085375315, 1063718962906450
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..1000
Programs
-
Mathematica
nmax = 50; CoefficientList[Series[Product[(1 - x^(5*k))^24/(1 - x^k)^25, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Nov 28 2016 *)