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 (216).
FORMULA
From Philippe Deléham, Nov 25 2008: (Start)
a(n) = 216*a(n-1); a(0)=36.
G.f.: 36/(1-216*x).
a(n) = 6*A013738(n). (End)
MAPLE
seq(6^(3*n+2), n=0..11); # Nathaniel Johnston, Jun 26 2011
MATHEMATICA
NestList[216#&, 36, 20] (* Harvey P. Dale, Nov 29 2015 *)
PROG
(Magma) [6^(3*n+2): n in [0..20]]; // Vincenzo Librandi, May 25 2011
(PARI) a(n)=6^(3*n+2) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved