OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
MAPLE
[seq(coeff(series(mul((1+m*q^m)^(17), m=1..100), q, 101), q, j), j=0..25)]; # Muniru A Asiru, Feb 18 2018
MATHEMATICA
With[{nmax = 50}, CoefficientList[Series[Product[(1 + k*q^k)^17, {k, 1, nmax}], {q, 0, nmax}], q]] (* G. C. Greubel, Feb 17 2018 *)
PROG
(PARI) m=50; q='q+O('q^m); Vec(prod(n=1, m, (1+n*q^n)^17)) \\ G. C. Greubel, Feb 17 2018
(Magma) Coefficients(&*[(1+m*x^m)^17:m in [1..40]])[1..40] where x is PolynomialRing(Integers()).1; // G. C. Greubel, Feb 17 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved