OFFSET
0,9
COMMENTS
The ratio productive positive root is 1.2303914344072246.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,0,1,0,1,0,1,0,0,-1).
FORMULA
G.f.: 1/(1 - x^3 - x^5 - x^7 + x^10). - Colin Barker, Oct 23 2013
a(n) = a(n-3) + a(n-5) + a(n-7) - a(n-10). - Franck Maminirina Ramaharo, Oct 30 2018
MATHEMATICA
CoefficientList[Series[1/(1 - x^3 - x^5 - x^7 + x^10), {x, 0, 50}], x]
PROG
(Maxima) makelist(ratcoef(taylor(1/(1 - x^3 - x^5 - x^7 + x^10), x, 0, n), x, n), n, 0, 50); /* Franck Maminirina Ramaharo, Nov 02 2018 */
(PARI) x='x+O('x^50); Vec(1/(1-x^3-x^5-x^7+x^10)) \\ G. C. Greubel, Nov 03 2018
(Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1-x^3-x^5-x^7+x^10))); // G. C. Greubel, Nov 03 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula and Gary W. Adamson, Oct 24 2008
EXTENSIONS
More terms from Colin Barker, Oct 23 2013
New name after Colin Barker's formula by Franck Maminirina Ramaharo, Nov 03 2018
STATUS
approved