OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..495
Index entries for linear recurrences with constant coefficients, signature (111,-1100).
FORMULA
G.f.: x/((1-11*x)*(1-100*x)). - R. J. Mathar, Nov 02 2016
E.g.f.: (1/89)*(exp(100*x) - exp(11*x)). - G. C. Greubel, Feb 09 2023
EXAMPLE
MATHEMATICA
RecurrenceTable[{a[0]==0, a[n]==100a[n-1]+11^(n-1)}, a, {n, 40}] (* Harvey P. Dale, Feb 20 2016 *)
PROG
(Magma) [(1/89)*(100^n-11^n): n in [0..40]] // Vincenzo Librandi, Dec 05 2010
(SageMath) [(10^(2*n) - 11^n)/89 for n in range(41)] # G. C. Greubel, Feb 09 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mark Dols, Sep 05 2009
EXTENSIONS
a(0) prepended by Bruno Berselli, Oct 02 2015
STATUS
approved