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 (32).
FORMULA
From Philippe Deléham, Nov 24 2008: (Start)
a(n) = 32*a(n-1); a(0)=4.
G.f.: 4/(1-32*x).
a(n) = 4*A009976(n). (End)
From Elmo R. Oliveira, Feb 20 2025: (Start)
E.g.f.: 4*exp(32*x).
MATHEMATICA
2^(5*Range[0, 20] + 2) (* Paolo Xausa, Feb 21 2025 *)
PROG
(Magma) [2^(5*n+2): n in [0..15]]; // Vincenzo Librandi, Jul 07 2011
(Maxima) makelist(2^(5*n+2), n, 0, 20); /* Martin Ettl, Oct 21 2012 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved