A022739 Expansion of Product (1-m*q^m)^-15; m=1..infinity.
1, 15, 150, 1175, 7875, 46953, 255745, 1293825, 6154530, 27772930, 119720802, 495673410, 1979777985, 7656005115, 28752006375, 105129718102, 375082371420, 1308260532180, 4468338006465
Offset: 0
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 0..3000
Programs
-
Maple
N:= 30: # for a(0)..a(N) P:= mul(1-m*q^m,m=1..N): S:= series(P,q,N+1): S15:= series(S^(-15),q,N+1): seq(coeff(S15,q,i),i=0..N); # Robert Israel, Dec 22 2019
-
Mathematica
nmax = 20; CoefficientList[Series[Product[1/(1 - k*x^k)^15, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 23 2019 *)