OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..50
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (7962624).
FORMULA
a(n) = 7962624*a(n-1), a(0)=13824, where 7962624 = 24^5 and 13824=24^3. - Vincenzo Librandi, May 30 2011
E.g.f.: 13824*exp(7962624*x). - Alejandro J. Becerra Jr., May 18 2021
MATHEMATICA
24^(5*Range[0, 20]+3) (* or *) NestList[7962624#&, 13824, 20] (* Harvey P. Dale, Mar 02 2013 *)
PROG
(Magma) [24^(5*n+3): n in [0..10]]; // Vincenzo Librandi, May 30 2011
(PARI) a(n)=24^(5*n+3) \\ Charles R Greathouse IV, May 30 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved