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 (27).
FORMULA
MAPLE
seq(3^(3*n+1), n=0..15); # Nathaniel Johnston, Jun 26 2011
MATHEMATICA
NestList[27#&, 3, 20] (* Harvey P. Dale, Apr 01 2018 *)
PROG
(Magma) [3^(3*n+1): n in [0..25]]; // Vincenzo Librandi, May 25 2011
(PARI) a(n)=3^(3*n+1) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved