login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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: A161586 A209093 A078274 * A110195 A015484 A145185
KEYWORD
nonn,easy
STATUS
approved