OFFSET
0,2
REFERENCES
A. T. Benjamin and J. J. Quinn, Proofs that really count: the art of combinatorial proof, M.A.A. 2003, p. 15.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (1,1).
FORMULA
a(n) = 12*F(n) = F(n+5) + F(n-1) + F(n-3) + F(n-6) for n > 5, where F=A000045.
G.f.: 12*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = F(n+6) + F(n-6) - 6*F(n). - Bruno Berselli, Dec 29 2016
MATHEMATICA
LinearRecurrence[{1, 1}, {0, 12}, 40] (* Harvey P. Dale, May 07 2016 *)
PROG
(PARI) a(n)=12*fibonacci(n) \\ Charles R Greathouse IV, Aug 28 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved