OFFSET
0,1
COMMENTS
Additive digital root of a(n) = 7. - Miquel Cerda, Jul 03 2016
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 (64).
FORMULA
G.f.: 16/(1-64*x). - Philippe Deléham, Nov 24 2008
From Ilya Gutkovskiy, Jul 03 2016: (Start)
E.g.f.: 16*exp(64*x).
a(n) = 64*a(n-1). - Miquel Cerda, Oct 28 2016
MAPLE
seq(4^(3*n+2), n=0..13); # Nathaniel Johnston, Jun 26 2011
MATHEMATICA
lst={}; Do[AppendTo[lst, 4^(3*n+2)], {n, 0, 4!}]; lst (* Vladimir Joseph Stephan Orlovsky, Mar 02 2009 *)
NestList[64#&, 16, 20] (* Harvey P. Dale, Nov 04 2017 *)
PROG
(Magma) [4^(3*n+2): n in [0..50]]; // Vincenzo Librandi, Apr 25 2011
(PARI) 16<<(6*n) \\ Charles R Greathouse IV, Jan 19 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved