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.

A154620 Primes p such that 31p+14 is prime.

Original entry on oeis.org

3, 17, 23, 47, 53, 107, 113, 137, 179, 197, 233, 263, 269, 347, 353, 383, 389, 419, 449, 503, 563, 587, 593, 599, 617, 647, 659, 677, 683, 719, 773, 929, 1049, 1163, 1193, 1229, 1259, 1307, 1319, 1367, 1373, 1439, 1553, 1607, 1667, 1787, 1823, 1847, 1889
Offset: 1

Views

Author

Vincenzo Librandi, Jan 17 2009

Keywords

Examples

			For p=3, 31p+14=107; p=449, 31p+14=13933
		

Crossrefs

Cf. A142018.

Programs

  • Magma
    [p: p in PrimesUpTo(2000)|IsPrime(31*p+14)]; // Vincenzo Librandi, Jul 31 2012
  • Mathematica
    Select[Prime[Range[9000]],PrimeQ[31#+14]&] (* Vincenzo Librandi, Jul 31 2012 *)