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.

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

Original entry on oeis.org

1, -14, 77, -210, 392, -1288, 4697, -9998, 18179, -55636, 150591, -286832, 608909, -1554042, 3444055, -6999356, 14790755, -32329780, 70059535, -141733788, 282586556, -600593730, 1244075259, -2429815472, 4846233028
Offset: 0

Views

Author

Keywords

Programs

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