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”).

A013723
a(n) = 18^(2*n + 1).
3
18, 5832, 1889568, 612220032, 198359290368, 64268410079232, 20822964865671168, 6746640616477458432, 2185911559738696531968, 708235345355337676357632, 229468251895129407139872768
OFFSET
0,1
FORMULA
From Philippe Deléham, Nov 28 2008: (Start)
a(n) = 324*a(n-1); a(0)=18.
G.f.: 18/(1-324*x). (End)
MAPLE
seq(18^(2*n+1), n=0..10); # Nathaniel Johnston, Jun 25 2011
MATHEMATICA
18^(2*Range[0, 20]+1) (* or *) NestList[324#&, 18, 20] (* Harvey P. Dale, Sep 28 2021 *)
PROG
(Magma) [18^(2*n+1): n in [0..15]]; // Vincenzo Librandi, Jun 26 2011
(PARI) a(n)=18^(2*n+1) \\ Charles R Greathouse IV, Jul 11 2016
CROSSREFS
Bisection of A001027 (18^n).
Sequence in context: A188799 A058976 A319942 * A366518 A232595 A335685
KEYWORD
nonn,easy
STATUS
approved