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.

A135985 Prime numbers of the form 24*p + 7 where p is prime.

Original entry on oeis.org

79, 127, 271, 463, 751, 991, 1039, 1279, 1423, 1471, 1759, 1999, 2143, 2719, 3343, 3583, 3631, 3919, 4159, 4591, 4639, 4783, 5503, 5743, 5791, 7039, 7951, 8623, 9103, 9199, 9343, 9631, 10111, 10399, 10639, 11071, 11119, 11503, 12511
Offset: 1

Views

Author

Artur Jasinski, Dec 09 2007

Keywords

Crossrefs

Programs

  • Maple
    select(t -> isprime(t) and isprime((t-7)/24), [seq(p,p=7..20000,24)]); # Robert Israel, Oct 16 2018
  • Mathematica
    a = {}; Do[If[PrimeQ[24(Prime[n]) + 7], AppendTo[a, 24(Prime[n]) + 7]], {n, 1, 100}]; a