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.

A013984 Expansion of 1/(1-x^2-x^3-x^4-x^5-x^6-x^7).

Original entry on oeis.org

1, 0, 1, 1, 2, 3, 5, 8, 12, 20, 31, 50, 79, 126, 200, 318, 506, 804, 1279, 2033, 3233, 5140, 8173, 12995, 20662, 32853, 52236, 83056, 132059, 209975, 333861, 530841, 844040, 1342028, 2133832, 3392804, 5394577
Offset: 0

Views

Author

Keywords

Comments

Number of compositions of n into parts p where 2 <= p < = 7. [Joerg Arndt, Jun 24 2013]

Programs

  • Magma
    m:=40; R:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1-x^2-x^3-x^4-x^5-x^6-x^7))); // Vincenzo Librandi, Jun 24 2013
  • Mathematica
    CoefficientList[Series[1 / (1 - x^2 - x^3 - x^4 - x^5 - x^6 - x^7), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 23 2013 *)
  • PARI
    Vec(1/(1-x^2-x^3-x^4-x^5-x^6-x^7)+O(x^99)) \\ Charles R Greathouse IV, Sep 25 2012