A180948 Smallest of seven (7) consecutive primes whose sum is a prime.
17, 19, 23, 29, 31, 43, 47, 53, 61, 71, 79, 89, 97, 103, 107, 113, 127, 137, 151, 233, 257, 313, 317, 359, 367, 373, 379, 383, 401, 461, 463, 487, 499, 503, 509, 521, 577, 587, 617, 619, 761, 797, 821, 827, 839, 853, 881, 883, 907, 1019, 1061, 1063, 1069, 1097
Offset: 1
Keywords
Examples
a(7)=47+53+59+61+67+71+73=431 is a prime.
Links
- Zak Seidov, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Transpose[Select[Partition[Prime[Range[500]],7,1],PrimeQ[Total[#]]&]] [[1]] (* Harvey P. Dale, Jun 05 2013 *)
Extensions
More cross references from Harvey P. Dale, Jun 05 2013
Comments