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