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.

A139528 Numbers n such that numbers 24n+11 are primes.

Original entry on oeis.org

0, 2, 3, 4, 5, 7, 9, 10, 14, 17, 18, 19, 20, 23, 24, 27, 28, 34, 39, 40, 42, 45, 48, 49, 52, 53, 54, 59, 60, 62, 63, 65, 67, 69, 74, 75, 79, 80, 82, 83, 84, 87, 93, 94, 97, 100, 102, 105, 107, 112, 117, 118, 122, 123, 125, 128, 133, 135, 137, 138, 139, 140, 144, 145, 147
Offset: 1

Views

Author

Artur Jasinski, Apr 25 2008

Keywords

Programs

  • Magma
    [n: n in [0..150] |IsPrime(24*n+11)]; // Vincenzo Librandi, Apr 09 2013
  • Mathematica
    a = {}; Do[If[PrimeQ[24 n + 11], AppendTo[a, n]], {n, 0, 200}]; a
    Select[Range[0,200],PrimeQ[24#+11]&] (* Harvey P. Dale, Apr 08 2013 *)