OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (625).
FORMULA
From Philippe Deléham, Nov 30 2008: (Start)
a(n) = 625*a(n-1); a(0)=125.
G.f.: 125/(1-625*x).
a(n) = 25*A013782(n). (End)
MATHEMATICA
5^(4*Range[0, 20]+3) (* or *) NestList[625#&, 125, 20] (* Harvey P. Dale, Aug 14 2018 *)
PROG
(Magma) [5^(4*n+3): n in [0..15]]; // Vincenzo Librandi, Jun 28 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved