OFFSET
0,10
COMMENTS
Low growth rate of 1.20262... .The absolute values of the roots of the polynomial are 0.8315201041..., 1.2026167436..., and 1.0 (with multiplicity 12). The polynomial is self-reciprocal. - Joerg Arndt, Nov 03 2012
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,1,0,0,0,0,1,0,0,0,0,1,0,-1).
FORMULA
G.f.: 1/(1 - x^2 - x^7 - x^12 + x^14). - Colin Barker, Nov 03 2012
a(n) = a(n-2) + a(n-7) + a(n-12) - a(n-14). - Franck Maminirina Ramaharo, Nov 02 2018
MATHEMATICA
CoefficientList[Series[1/(1 - x^2 - x^7 - x^12 + x^14), {x, 0, 50}], x]
LinearRecurrence[{0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1}, {1, 0, 1, 0, 1, 0, 1, 1, 1, 2, 1, 3, 2, 4}, 70] (* Harvey P. Dale, Aug 08 2022 *)
PROG
(PARI) x='x+O('x^50); Vec(1/(1-x^2-x^7-x^12+x^14)) \\ G. C. Greubel, Nov 03 2018
(Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1 -x^2-x^7-x^12+x^14))); // G. C. Greubel, Nov 03 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula and Gary W. Adamson, Oct 26 2008
EXTENSIONS
New name from Colin Barker and Joerg Arndt, Nov 03 2012
STATUS
approved