A113633 Sum of the first 5^n primes.
2, 28, 1060, 39612, 1336090, 42157238, 1271530648, 37178373556, 1062895088910, 29878892909030, 828999068943506, 22762324818835316, 619715756464336328, 16753554900339748756, 450233110894196298638, 12038074430656287496566, 320451759639384414082274, 8497567719126134980044214
Offset: 0
Keywords
Examples
The first 5^1 primes add up to 28.
Links
- Amiram Eldar, Table of n, a(n) for n = 0..24 (calculated using Kim Walisch's primesum program)
- Cino Hilliard, SumPrimes. [broken link]
- Kim Walisch, Sum of the primes below x (primesum).
Programs
-
Mathematica
t = {}; c = 1; k = 3; s = 2; Do[ While[c < 5^n, If[PrimeQ[k], c++; s += k]; k += 2]; Print@s; AppendTo[t, s], {n, 0, 10}]; t (* Robert G. Wilson v, Jan 17 2006 *)
Formula
Extensions
a(15) onwards from Amiram Eldar, Jul 01 2024
Comments