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.

A022739 Expansion of Product (1-m*q^m)^-15; m=1..infinity.

Original entry on oeis.org

1, 15, 150, 1175, 7875, 46953, 255745, 1293825, 6154530, 27772930, 119720802, 495673410, 1979777985, 7656005115, 28752006375, 105129718102, 375082371420, 1308260532180, 4468338006465
Offset: 0

Views

Author

Keywords

Crossrefs

Column k=15 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):
    S15:= series(S^(-15),q,N+1):
    seq(coeff(S15,q,i),i=0..N); # Robert Israel, Dec 22 2019
  • Mathematica
    nmax = 20; CoefficientList[Series[Product[1/(1 - k*x^k)^15, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 23 2019 *)