login
A013716
a(n) = 11^(2*n + 1).
4
11, 1331, 161051, 19487171, 2357947691, 285311670611, 34522712143931, 4177248169415651, 505447028499293771, 61159090448414546291, 7400249944258160101211, 895430243255237372246531
OFFSET
0,1
FORMULA
From Philippe Deléham, Nov 25 2008: (Start)
a(n) = 121*a(n-1), a(0)=11.
G.f.: 11/(1-121*x). (End)
MAPLE
seq(11^(2*n+1), n=0..11); # Nathaniel Johnston, Jun 25 2011
MATHEMATICA
11^(2*Range[0, 20]+1) (* or *) NestList[121#&, 11, 20] (* Harvey P. Dale, Jun 21 2024 *)
PROG
(Magma) [11^(2*n+1): n in [0..15]]; // Vincenzo Librandi, Jun 26 2011
(PARI) a(n)=11^(2*n+1) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
Bisection of A001020 (11^n).
Sequence in context: A223039 A209093 A078274 * A110195 A015484 A145185
KEYWORD
nonn,easy
STATUS
approved