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

A013785
a(n) = 6^(4n+3).
1
216, 279936, 362797056, 470184984576, 609359740010496, 789730223053602816, 1023490369077469249536, 1326443518324400147398656, 1719070799748422591028658176, 2227915756473955677973140996096, 2887378820390246558653190730940416
OFFSET
0,1
FORMULA
a(n) = 1296*a(n-1), n>0; a(0)=216. G.f.: 216/(1-1296*x). a(n) = 36*A013784(n). - Philippe Deléham, Nov 30 2008
MATHEMATICA
lst={}; Do[AppendTo[lst, 6^(4*n+3)], {n, 0, 5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Jan 15 2009 *)
PROG
(Magma) [6^(4*n+3): n in [0..15]]; // Vincenzo Librandi, Jun 28 2011
CROSSREFS
Sequence in context: A222337 A008697 A282000 * A100509 A378265 A013840
KEYWORD
nonn,easy
STATUS
approved