OFFSET
1,3
LINKS
FORMULA
a(n) = a(n-1) + 100*a(n-2).
G.f.: x/(1 - x - 100*x^2). - Philippe Deléham, Oct 08 2011
MATHEMATICA
LinearRecurrence[{1, 100}, {1, 1}, 20] (* Harvey P. Dale, Nov 21 2014 *)
PROG
(PARI) Vec(x/(1-x-100*x^2)+O(x^99)) \\ Charles R Greathouse IV, Oct 08 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mark Dols, Jul 10 2009
EXTENSIONS
More terms from Philippe Deléham, Oct 08 2011
STATUS
approved