login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A228201
Smallest of 11 consecutive primes whose sum is not a prime.
2
2, 3, 17, 29, 31, 43, 47, 53, 61, 67, 71, 73, 79, 83, 89, 97, 127, 131, 139, 163, 179, 181, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 271, 277, 311, 313, 317, 337, 347, 367, 373, 379, 383, 389, 397, 401, 409, 419, 433, 439, 443, 449
OFFSET
1,1
LINKS
EXAMPLE
31 is in the sequence because 31+37+41+43+47+53+59+61+67+71+73 = 583 and 583 = 11*53.
MATHEMATICA
Transpose[Select[Partition[Prime[Range[150]], 11, 1], ! PrimeQ[Total[#]] &]][[1]]
Prime[Select[Range[100], ! PrimeQ[Sum[Prime[# + i], {i, 0, 10}]] &]] (* Bruno Berselli, Aug 22 2013 *)
PROG
(Magma) [NthPrime(n): n in [1..120] |not IsPrime(&+[NthPrime(n+s): s in [0..10]])];
CROSSREFS
Sequence in context: A095688 A029876 A248716 * A084445 A215303 A215280
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Aug 20 2013
STATUS
approved