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

A217994
a(n) = 2^((2 + n + n^2)/2).
1
2, 4, 16, 128, 2048, 65536, 4194304, 536870912, 137438953472, 70368744177664, 72057594037927936, 147573952589676412928, 604462909807314587353088
OFFSET
0,1
LINKS
FORMULA
a(n) = a(n-1)*(2^n), with a(0)=2.
G.f.: G(0)/x -1/x, where G(k)= 1 + 2^k*x/(1 - x/(x + x/G(k+1) )); (continued fraction). - Sergei N. Gladkovskii, Jul 26 2013
EXAMPLE
a(3) = 128 because a(3) = 2^(2 + 3 + 3^2)/2 = 2^14/2 = 2^7 = 128.
MATHEMATICA
Table[2^((2 + n + n^2) / 2), {n, 0, 30}] (* Vincenzo Librandi, Jul 26 2013 *)
PROG
(Maxima) A217994[n]:=2^((2+n+n^2)/2)$
makelist(A217994[n], n, 0, 30); /* Martin Ettl, Oct 29 2012 */
(PARI) a(n)=2<<((n+n^2)/2) \\ Charles R Greathouse IV, Jan 06 2013
(Magma) [2^((2 + n + n^2) div 2): n in [0..15]]; // Vincenzo Librandi, Jul 26 2013
CROSSREFS
Sequence in context: A009200 A144526 A179532 * A174677 A073924 A362065
KEYWORD
nonn,easy
AUTHOR
Mokhtar Mohamed, Oct 19 2012
STATUS
approved