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.

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

Original entry on oeis.org

1, -17, 119, -442, 1054, -2805, 10336, -29393, 60724, -150620, 452914, -1066546, 2195703, -5396208, 13442002, -29151005, 62519523, -141740051, 317832119, -683311906, 1431370114, -3054813215, 6608329573, -13743348845
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    With[{nmax = 50}, CoefficientList[Series[Product[(1 + k*q^k)^-17, {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)^-17)) \\ G. C. Greubel, Jul 20 2018