OFFSET
0,5
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..2500
Index entries for linear recurrences with constant coefficients, signature (1,0,0,1,0,0,0,0,-1).
FORMULA
a(n) = a(n-1) + a(n-4) - a(n-9) for all n in Z.
a(n) - a(n-1) = A017830(n).
G.f.: 1 / ((1 - x) * (1 + x) * (1 + x^2) * (1 - x - x^5)).
EXAMPLE
G.f. = 1 + x + x^2 + x^3 + 2*x^4 + 3*x^5 + 4*x^6 + 5*x^7 + 7*x^8 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ If[ n >= 0, 1 / (1 - x - x^4 + x^9), -x^9 / (1 - x^5 - x^8 + x^9)], {x, 0, Abs@n}];
PROG
(PARI) {a(n) = if( n>=0, polcoeff( 1 / (1 - x - x^4 + x^9) + x * O(x^n), n), polcoeff( -x^9 / (1 - x^5 - x^8 + x^9) + x * O(x^-n), -n))};
(Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/( 1-x-x^4+x^9))); // G. C. Greubel, Aug 08 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Dec 11 2013
STATUS
approved