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.

A022703 Expansion of Product_{m>=1} (1+m*q^m)^-11.

Original entry on oeis.org

1, -11, 44, -77, 132, -638, 1771, -2464, 5687, -19371, 38533, -66793, 160710, -367730, 747219, -1458655, 2888787, -6357505, 12977239, -23575079, 47325498, -98587841, 187236499, -352094413, 684939838, -1333767820
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    With[{nmax = 50}, CoefficientList[Series[Product[(1 + k*q^k)^-11, {k, 1, nmax}], {q, 0, nmax}], q]] (* G. C. Greubel, Jul 19 2018 *)
  • PARI
    m=50; q='q+O('q^m); Vec(prod(n=1,m,(1+n*q^n)^-11)) \\ G. C. Greubel, Jul 19 2018