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.

A121832 Expansion of 1/(1-x-x^5-x^6).

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 4, 6, 8, 10, 13, 19, 29, 43, 61, 84, 116, 164, 236, 340, 485, 685, 965, 1365, 1941, 2766, 3936, 5586, 7916, 11222, 15929, 22631, 32153, 45655, 64793, 91944, 130504, 185288, 263096, 373544, 530281, 752729, 1068521, 1516905
Offset: 0

Views

Author

Jon E. Schoenfield, Aug 27 2006

Keywords

Comments

Number of compositions of n into parts 1, 5, and 6. [Joerg Arndt, Sep 03 2013]

Crossrefs

Cf. A008288.

Programs

  • Magma
    I:=[1,1,1,1,1,2]; [n le 6 select I[n] else Self(n-1)+Self(n-5)+Self(n-6): n in [1..50]]; // Vincenzo Librandi, Sep 03 2013
  • Mathematica
    CoefficientList[Series[1 / (1 - x - x^5 - x^6), {x, 0, 50}], x] (* Vincenzo Librandi, Sep 03 2013 *)
    LinearRecurrence[{1,0,0,0,1,1},{1,1,1,1,1,2},50] (* Harvey P. Dale, Mar 30 2018 *)

Formula

a(n) = a(n-1) + a(n-5) + a(n-6).
a(n) = Sum_{k=0..floor(n/5)} A008288(n-4*k, k). - Johannes W. Meijer, Jul 19 2013