login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A099825 Sum of the first 2^n primes. 6
2, 5, 17, 77, 381, 1851, 8893, 41741, 191755, 868151, 3875933, 17120309, 74950547, 325590115, 1405167561, 6029676711, 25750781177, 109495928099, 463852117169, 1958476902435, 8244703036797, 34615624751259, 144991244981985 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 0..30
C. Hilliard, Sumprimes.
MATHEMATICA
NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; f[0] = 2; f[n_] := f[n] = Block[{k = 0, mx = 2^n/2, np = Prime[2^n/2], s = f[n - 1]}, While[k < mx, k++; np = NextPrim@np; s = s + np]; s]; Table[ f@n, {n, 0, 23)] (* Robert G. Wilson v Aug 24 2006 *)
Module[{nn=22, ap}, ap=Accumulate[Prime[Range[2^nn]]]; Table[ap[[2^n]], {n, 0, nn}]] (* Harvey P. Dale, Apr 12 2017 *)
PROG
(PARI) a(n)=my(s); forprime(p=2, , s+=p; if(n--==0, return(s))) \\ Charles R Greathouse IV, Feb 16 2017
CROSSREFS
Sequence in context: A328439 A328504 A279208 * A014288 A330046 A343848
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Oct 25 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 3 02:00 EDT 2024. Contains 372203 sequences. (Running on oeis4.)