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”).

A022673
Expansion of Product_{m >= 1} (1-m*q^m)^13.
2
1, -13, 52, 13, -546, 676, 1911, -962, -9282, -13624, 53027, 57408, -48334, -222912, -558402, 517803, 1776723, 2996227, -1100554, -14813461, -12542478, -3043521, 50552853, 110798116, 84474624, -114111322, -650898679, -771617782, -206121175, 1974416808, 4748905980, 5776813289
OFFSET
0,2
LINKS
MATHEMATICA
With[{nmax = 50}, CoefficientList[Series[Product[(1 - k*q^k)^13, {k, 1, nmax}], {q, 0, nmax}], q]] (* G. C. Greubel, Feb 24 2018 *)
PROG
(PARI) m=50; q='q+O('q^m); Vec(prod(n=1, m, (1-n*q^n)^13)) \\ G. C. Greubel, Feb 24 2018
(Magma) Coefficients(&*[(1-m*x^m)^13:m in [1..40]])[1..40] where x is PolynomialRing(Integers()).1; // G. C. Greubel, Feb 24 2018
CROSSREFS
Sequence in context: A108919 A002792 A183941 * A152742 A213837 A047903
KEYWORD
sign
EXTENSIONS
Terms a(26) onward added by G. C. Greubel, Feb 24 2018
STATUS
approved