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 (16).
FORMULA
From Philippe Deléham, Nov 23 2008: (Start)
a(n) = 16*a(n-1); a(0)=8.
G.f.: 8/(1-16*x). (End)
From Elmo R. Oliveira, Feb 18 2025: (Start)
E.g.f.: 8*exp(16*x).
MATHEMATICA
2^(4*Range[0, 20] + 3) (* or *)
NestList[16*# &, 8, 20] (* Paolo Xausa, Jul 21 2025 *)
NestList[16#&, 8, 20] (* Harvey P. Dale, Jan 29 2026 *)
PROG
(SageMath) [lucas_number1(4*n, 2, 0) for n in range(1, 17)] # Zerinvary Lajos, Oct 27 2009
(Magma) [2^(4*n+3): n in [0..20]]; // Vincenzo Librandi, Jun 27 2011
(PARI) a(n)=8<<(4*n) \\ Charles R Greathouse IV, Apr 08 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
