login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A022641
Expansion of Product_{m>=1} (1 + m*q^m)^13.
2
1, 13, 104, 663, 3614, 17576, 78299, 324766, 1269242, 4715204, 16762551, 57327556, 189418658, 606787572, 1890046210, 5738539729, 17019191579, 49394158541, 140507716414, 392299039821, 1076369417474, 2905414115877, 7722941644821, 20233362612424, 52288914446548, 133389316899462
OFFSET
0,2
LINKS
MAPLE
[seq(coeff(series(mul((1+m*q^m)^(13), 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)^13, {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)^13)) \\ G. C. Greubel, Feb 17 2018
(Magma) Coefficients(&*[(1+m*x^m)^13:m in [1..40]])[1..40] where x is PolynomialRing(Integers()).1; // G. C. Greubel, Feb 17 2018
CROSSREFS
Column k=13 of A297321.
Sequence in context: A278555 A282921 A023011 * A000590 A052065 A303967
KEYWORD
nonn
STATUS
approved