cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A228201 Smallest of 11 consecutive primes whose sum is not a prime.

Original entry on oeis.org

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

Views

Author

Vincenzo Librandi, Aug 20 2013

Keywords

Examples

			31 is in the sequence because 31+37+41+43+47+53+59+61+67+71+73 = 583 and 583 = 11*53.
		

Crossrefs

Programs

  • Magma
    [NthPrime(n): n in [1..120] |not IsPrime(&+[NthPrime(n+s): s in [0..10]])];
  • 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 *)