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 (4096).
FORMULA
From Philippe Deléham, Dec 03 2008: (Start)
a(n) = 4096*a(n-1), a(0)=256.
G.f.: 256/(1-4096*x).
a(n) = 16*A013758(n). (End)
MATHEMATICA
16^(3*Range[0, 10]+2) (* or *) NestList[4096#&, 256, 10] (* Harvey P. Dale, Dec 04 2023 *)
PROG
(Magma) [16^(3*n+2): n in [0..15]]; // Vincenzo Librandi, May 24 2011
(PARI) a(n)=16^(3*n+2) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved