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.

A156105 Primes p such that p + 72 is also prime.

Original entry on oeis.org

7, 11, 17, 29, 31, 37, 41, 59, 67, 79, 101, 107, 109, 127, 139, 151, 157, 167, 179, 191, 197, 199, 211, 239, 241, 277, 281, 307, 311, 317, 337, 347, 349, 359, 367, 389, 419, 431, 449, 491, 499, 521, 541, 547, 569, 571, 587, 601, 619, 647, 661, 701, 739, 751
Offset: 1

Views

Author

Vincenzo Librandi, Feb 08 2009

Keywords

Crossrefs

Programs

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