OFFSET
1,1
COMMENTS
All terms are multiples of 99.
LINKS
Colin Barker, Table of n, a(n) for n = 1..200
Index entries for linear recurrences with constant coefficients, signature (39206,-1).
FORMULA
a(n) = 39206*a(n-1)-a(n-2).
G.f.: 99*x*(x+1) / (x^2-39206*x+1).
MATHEMATICA
LinearRecurrence[{39206, -1}, {99, 3881493}, 20] (* Harvey P. Dale, Aug 25 2017 *)
PROG
(PARI) Vec(99*x*(x+1)/(x^2-39206*x+1) + O(x^50))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Aug 24 2013
STATUS
approved