cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A022740 Expansion of Product (1-m*q^m)^-16; m=1..inf.

Original entry on oeis.org

1, 16, 168, 1376, 9604, 59488, 335904, 1758816, 8646986, 40281296, 179065184, 763837600, 3140732344, 12494160288, 48236274976, 181203877248, 663837626163, 2376282980272, 8325497904672
Offset: 0

Views

Author

Keywords

Crossrefs

Column k=16 of A297328.

Programs

  • 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 *)