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.

A207527 Primes that are the sum of three consecutive primes in A034962.

Original entry on oeis.org

131, 251, 337, 503, 743, 929, 1447, 1597, 3023, 3919, 4051, 4157, 5087, 5897, 6133, 7649, 7877, 8269, 9181, 9433, 9721, 11411, 11677, 13151, 13757, 14009, 14533, 18133, 18493, 18743, 20563, 21023, 21247, 22651, 22921, 23057, 23801, 23893, 24359, 24733, 24809
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A034962.

Programs

  • Mathematica
    t = Select[Table[Prime[n] + Prime[n + 1] + Prime[n + 2], {n, 1000}], PrimeQ]; Select[Table[t[[n]] + t[[n + 1]] + t[[n + 2]], {n, Length[t] - 2}], PrimeQ]