A222558 Least prime p such that 2*n*p is a sum of 10^6 subsequent primes.
3736971300983, 1868582442157, 1245659681423, 934275734321, 747425233469, 622762733249, 534156162737, 467093343419, 415824854441, 373728877943, 339743670103, 311538175027, 287741107327, 266994001331, 249114901193, 233613943273, 219815919913, 208214150917
Offset: 1
Keywords
Examples
a(1) = 3736971300983 = (p(64)+...+p(1000063))/2 = (311 + ... + 15486871)/2. a(2) = 1868582442157 = (p(89)+...+p(1000088))/4 = (461 + ... + 15487253)/4.
Programs
-
Mathematica
Do[s = 7472966967499 ; a = 2; b = 15485863; Do[s = s - a + (b = NextPrime[b]); a = NextPrime[a]; If[PrimeQ[s/m] , Print[{m, k, a, b, s/m}]; Break[]], {k, 2, 10^6}], {m, 2, 100, 2}]
Comments