OFFSET
0,6
COMMENTS
Number of compositions of n into parts 2, 3, and 6. [Joerg Arndt, Sep 03 2013]
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
S. Dominique Andres, On Multiperiodic Infinite Recursions and Their Finite Core, J. Int. Seq. 14 (2011) # 11.2.7
Index entries for linear recurrences with constant coefficients, signature (0,1,1,0,0,1).
FORMULA
a(n) = a(n-2) + a(n-3) + a(n-6).
G.f.: -1 / ( (1+x)*(x^5-x^4+x^3+x-1) ). - R. J. Mathar, Aug 09 2017
MATHEMATICA
CoefficientList[Series[1 / (1 - x^2 - x^3 - x^6), {x, 0, 50}], x] (* Vincenzo Librandi, Sep 03 2013 *)
LinearRecurrence[{0, 1, 1, 0, 0, 1}, {1, 0, 1, 1, 1, 2}, 50] (* Harvey P. Dale, Dec 16 2016 *)
PROG
(Magma) I:=[1, 0, 1, 1, 1, 2]; [n le 6 select I[n] else Self(n-2)+Self(n-3)+Self(n-6): n in [1..50]]; // Vincenzo Librandi, Sep 03 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jon E. Schoenfield, Aug 27 2006
STATUS
approved