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

A100628
a(n) = 2^(3*prime(n) + 1).
2
128, 1024, 65536, 4194304, 17179869184, 1099511627776, 4503599627370496, 288230376151711744, 1180591620717411303424, 309485009821345068724781056, 19807040628566084398385987584, 5192296858534827628530496329220096
OFFSET
1,1
EXAMPLE
a(1) = 2^(3*2 + 1) = 128.
MATHEMATICA
Table[2^(3Prime[n] + 1), {n, 1, 15}] (* Stefan Steinerberger, Feb 28 2006 *)
PROG
(Magma) [2^(3*NthPrime(n) + 1): n in [1..20]]; // Vincenzo Librandi, Aug 27 2015
CROSSREFS
Sequence in context: A143708 A130813 A206278 * A344303 A221599 A134630
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Dec 02 2004
EXTENSIONS
More terms from Stefan Steinerberger, Feb 28 2006
STATUS
approved