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.

A156300 Primes p such that 4*p - 5 is also prime.

Original entry on oeis.org

2, 3, 7, 13, 19, 43, 61, 67, 79, 97, 109, 127, 151, 163, 181, 211, 223, 229, 277, 307, 331, 373, 379, 397, 457, 463, 523, 601, 607, 613, 673, 727, 733, 751, 757, 853, 883, 907, 919, 967, 1021, 1033, 1069, 1117, 1171, 1201, 1231, 1237, 1321, 1327, 1381, 1399
Offset: 1

Views

Author

Vincenzo Librandi, Feb 07 2009

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(1400) | IsPrime(4*p - 5)]; // Vincenzo Librandi, Oct 31 2012
  • Mathematica
    Select[Prime[Range[1400]], PrimeQ[(4# - 5)]&] (* Vincenzo Librandi, Oct 31 2012 *)