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.

A185022 Prime p such that p, p+12, p+24 are all primes.

Original entry on oeis.org

5, 7, 17, 19, 29, 47, 59, 89, 127, 139, 167, 199, 227, 239, 257, 269, 397, 409, 419, 467, 479, 607, 619, 727, 797, 929, 997, 1009, 1039, 1277, 1279, 1427, 1447, 1459, 1487, 1499, 1559, 1597, 1697, 1709, 1777, 1877, 1889, 1987, 2087, 2129, 2269, 2399, 2609
Offset: 1

Views

Author

Salvatore Di Guida, May 19 2012

Keywords

Comments

Intersection of A046133 and A033560. - M. F. Hasler, May 19 2012

Programs

  • Mathematica
    Select[Range[50], PrimeQ[#] && PrimeQ[# + 12] && PrimeQ[# + 24] &] (* G. C. Greubel, Jun 20 2017 *)
  • PARI
    forprime(p=1,2999,isprime(p+12)&isprime(p+24)&print1(p",")) \\ M. F. Hasler, May 19 2012