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.

A228200 Smallest of 9 consecutive primes whose sum is not a prime.

Original entry on oeis.org

2, 5, 7, 11, 13, 17, 19, 23, 41, 43, 53, 59, 61, 67, 71, 73, 97, 101, 103, 113, 137, 151, 163, 167, 181, 191, 223, 227, 229, 233, 239, 251, 257, 263, 269, 271, 281, 283, 293, 307, 311, 313, 317, 331, 337, 349, 353, 379, 383, 401, 409, 419, 421, 431, 439, 443, 457, 461
Offset: 1

Views

Author

Vincenzo Librandi, Aug 20 2013

Keywords

Examples

			59 is in the sequence because 59 + 61 + 67 + 71 + 73 + 79 + 83 + 89 + 97 = 679 and 679 is not a prime.
		

Crossrefs

Programs

  • Magma
    [NthPrime(n): n in [1..120] |not IsPrime(&+[NthPrime(n+s): s in [0..8]])];
  • Mathematica
    Transpose[Select[Partition[Prime[Range[150]], 9, 1], !PrimeQ[Total[#]]&]][[1]]