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.

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

Original entry on oeis.org

1, -11, 33, 44, -341, 88, 1023, 1287, -2959, -12958, 9119, 27103, 45529, 8349, -269324, -262218, -83688, 1326985, 2245881, -109131, -2655939, -12119899, -13052019, 1449316, 49891809, 98829445, 62513847, -67450570, -406154540, -631008378, -597001801, 801699162, 2523580444, 4221608313
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    Coefficients(&*[(1-m*x^m)^11:m in [1..40]])[1..40] where x is PolynomialRing(Integers()).1; // G. C. Greubel, Feb 24 2018
  • Mathematica
    With[{nmax = 50}, CoefficientList[Series[Product[(1 - k*q^k)^11, {k, 1, nmax}], {q, 0, nmax}], q]] (* G. C. Greubel, Feb 24 2018 *)
  • PARI
    m=50; q='q+O('q^m); Vec(prod(n=1,m,(1-n*q^n)^11)) \\ G. C. Greubel, Feb 24 2018
    

Extensions

Terms a(28) onward added by G. C. Greubel, Feb 24 2018