A050247 a(n) is the sum of the first A045345(n) primes.
2, 874, 5830, 2615298, 712377380, 86810649294, 794712005370, 105784534314378, 92542301212047102, 82704567079549985700, 24733255676526572596026, 3612032130800990065125528, 8102184022428756416738378
Offset: 1
Links
- Paul W. Dyson, Table of n, a(n) for n = 1..16 (terms 1..15 from Bruce Garner).
- OEIS Wiki, Sums of powers of primes divisibility sequences
- Carlos Rivera, Puzzle 31.- The Average Prime number, APN(k) = S(Pk)/k, The Prime Puzzles & Problems Connection.
- Eric Weisstein's World of Mathematics, Prime Sums
Crossrefs
Programs
-
Mathematica
A007504 = Cases[Import["https://oeis.org/A007504/b007504.txt", "Table"], {, }][[All, 2]]; A045345 = Cases[Import["https://oeis.org/A045345/b045345.txt", "Table"], {, }][[All, 2]]; Table[A007504[[A045345[[n]] + 1]], {n, 1, 5}](* Robert Price, Mar 13 2020 *)
-
PARI
s=n=0; forprime(p=2, 1e9, if((s+=p)%n++==0, print1(s", "))) \\ Charles R Greathouse IV, Nov 07 2014
Formula
Extensions
a(10)-a(11) from Giovanni Resta submitted by Ray Chandler, Jul 19 2010
a(12) from Donovan Johnson, Aug 23 2010
a(13) from Robert Price, Mar 17 2013
Comments