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

A022740
Expansion of Product (1-m*q^m)^-16; m=1..inf.
2
1, 16, 168, 1376, 9604, 59488, 335904, 1758816, 8646986, 40281296, 179065184, 763837600, 3140732344, 12494160288, 48236274976, 181203877248, 663837626163, 2376282980272, 8325497904672
OFFSET
0,2
LINKS
MAPLE
N:= 30: # for a(0)..a(N)
P:= mul(1-m*q^m, m=1..N):
S:= series(P, q, N+1):
S16:= series(S^(-16), q, N+1):
seq(coeff(S16, q, i), i=0..N); # Robert Israel, Dec 22 2019
MATHEMATICA
nmax = 20; CoefficientList[Series[Product[1/(1 - k*x^k)^16, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 23 2019 *)
CROSSREFS
Column k=16 of A297328.
Sequence in context: A265598 A021744 A025445 * A205247 A067713 A017210
KEYWORD
nonn
AUTHOR
STATUS
approved