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 (36).
FORMULA
G.f.: 6/(1-36*x). - Philippe Deléham, Nov 24 2008
a(n) = 36*a(n-1), a(0)=6. - Vincenzo Librandi, May 26 2011
From Elmo R. Oliveira, Aug 26 2024: (Start)
E.g.f.: 6*exp(36*x).
MATHEMATICA
lst={}; Do[AppendTo[lst, 6^(2*n+1)], {n, 0, 5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Jan 15 2009 *)
NestList[36#&, 6, 20] (* Harvey P. Dale, Oct 18 2012 *)
PROG
(Magma) [6^(2*n+1): n in [0..20]]; // Vincenzo Librandi, May 26 2011
(PARI) a(n)=6^(2*n+1) \\ Charles R Greathouse IV, Jul 10 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved