OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..100
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (248832).
MATHEMATICA
12^(5*Range[0, 20]+1) (* or *) NestList[248832#&, 12, 20] (* Harvey P. Dale, Dec 15 2019 *)
PROG
(Magma) [12^(5*n+1): n in [0..10]]; // Vincenzo Librandi, Jul 09 2011
(Maxima) makelist(12^(5*n+1), n, 0, 20); /* Martin Ettl, Oct 21 2012 */
(PARI) a(n) = 12^(5*n+1); \\ Altug Alkan, Sep 08 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved