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.

A022734 Expansion of Product_{m>=1} (1-m*q^m)^-10.

Original entry on oeis.org

1, 10, 75, 450, 2375, 11302, 49820, 205900, 807195, 3023020, 10883842, 37840290, 127544465, 418051040, 1336017805, 4172140618, 12755565695, 38242019080, 112591545060, 325939921700, 928795211589, 2607843351420
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    n:=50; R:=PowerSeriesRing(Integers(), n); Coefficients(R!(&*[(1/(1-m*x^m))^10:m in [1..n]])); // G. C. Greubel, Jul 25 2018
  • Mathematica
    With[{nmax = 50}, CoefficientList[Series[Product[(1 - k*q^k)^-10, {k, 1, nmax}], {q, 0, nmax}], q]] (* G. C. Greubel, Jul 25 2018 *)
  • PARI
    m=50; q='q+O('q^m); Vec(prod(n=1,m,(1-n*q^n)^-10)) \\ G. C. Greubel, Jul 25 2018