OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..100
Index entries for linear recurrences with constant coefficients, signature (91,900).
FORMULA
From Colin Barker, Oct 02 2015: (Start)
a(n) = 91*a(n-1) + 900*a(n-2) for n>1, a(0)=0.
G.f.: x/((1+9*x)*(1-100*x)). (End)
E.g.f.: (1/109)*(exp(100*x) - exp(-9*x)). - G. C. Greubel, Feb 09 2023
MATHEMATICA
LinearRecurrence[{91, 900}, {0, 1}, 40] (* G. C. Greubel, Feb 09 2023 *)
PROG
(Magma) [(1/109)*(100^n-(-9)^n): n in [0..20]]; // Vincenzo Librandi, Jun 10 2011
(PARI) Vec(x/((1+9*x)*(1-100*x)) + O(x^20)) \\ Colin Barker, Oct 02 2015
(SageMath) [(100^n-(-9)^n)/109 for n in range(41)] # G. C. Greubel, Feb 09 2023
CROSSREFS
KEYWORD
nonn,less,easy
AUTHOR
Mark Dols, Sep 05 2009
EXTENSIONS
a(0) prepended by Joerg Arndt, Oct 02 2015
STATUS
approved