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