OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..100
Index entries for linear recurrences with constant coefficients, signature (101,-100).
FORMULA
From Chai Wah Wu, Sep 22 2016: (Start)
a(n) = 101*a(n-1) - 100*a(n-2) for n > 1.
G.f.: 99*x/((x - 1)*(100*x - 1)). (End)
E.g.f.: exp(x)*(exp(99*x) - 1). - Stefano Spezia, Aug 05 2024
MATHEMATICA
Table[100^n - 1, {n, 0, 20}] (* Vincenzo Librandi, Sep 23 2016 *)
PROG
(Magma) [100^n-1: n in [0..20]]; // Vincenzo Librandi, Sep 23 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, Sep 17 2004
STATUS
approved