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 (484).
FORMULA
From Philippe Deléham, Nov 28 2008: (Start)
a(n) = 484*a(n-1); a(0)=22.
G.f.: 22/(1-484*x). (End)
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: 22*exp(484*x).
MAPLE
seq(22^(2*n+1), n=0..10); # Nathaniel Johnston, Jun 26 2011
MATHEMATICA
NestList[484*# &, 22, 15] (* Paolo Xausa, Jul 12 2025 *)
PROG
(Magma) [22^(2*n+1): n in [0..15]]; // Vincenzo Librandi, Jun 26 2011
(PARI) a(n)=22^(2*n+1) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
