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.

A023216 Primes p such that 4*p + 9 is also prime.

Original entry on oeis.org

2, 5, 7, 11, 13, 23, 37, 41, 43, 47, 67, 71, 97, 103, 113, 137, 151, 163, 167, 173, 181, 191, 197, 211, 233, 251, 263, 271, 277, 293, 307, 317, 397, 401, 421, 431, 433, 463, 467, 491, 557, 571, 587, 593, 607, 617, 653, 683, 727, 757, 811, 823, 863, 877, 881, 883, 887, 907
Offset: 1

Views

Author

Keywords

Programs

  • Magma
    [n: n in [0..1000] | IsPrime(n) and IsPrime(4*n+9)]; // Vincenzo Librandi, Nov 19 2010
  • Mathematica
    Select[Prime[Range[2000]], PrimeQ[4# + 9]&] (* Vincenzo Librandi, Feb 02 2014 *)