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.

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

Original entry on oeis.org

1, -13, 65, -156, 273, -1014, 3497, -6539, 12116, -39819, 99086, -178009, 395044, -988651, 2103335, -4237363, 8806967, -19098131, 40962220, -80207062, 158661230, -337459980, 681006807, -1307462312, 2595164702
Offset: 0

Views

Author

Keywords

Programs

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