OFFSET
0,3
REFERENCES
A. T. Benjamin and J. J. Quinn, Proofs that really count: the art of combinatorial proof, M.A.A. 2003, p. 47, ex. 4.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (1,2,1,-2,-2,-1).
FORMULA
a(n) = a(n-1) + 2*a(n-2) +a(n-3) - 2*a(n-4) - 2*a(n-5) - a(n-6). - G. C. Greubel, May 02 2017
MATHEMATICA
CoefficientList[Series[1/((1 - x - x^2 - x^3)*(1 - x^2 - x^3)), {x, 0, 50}], x] (* G. C. Greubel, May 02 2017 *)
PROG
(PARI) x='x+O('x^50); Vec(1/((1 - x - x^2 - x^3)*(1 - x^2 - x^3))) \\ G. C. Greubel, May 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Ralf Stephan, Feb 02 2005
STATUS
approved