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.

A127590 Numbers n such that 16n+5 is prime.

Original entry on oeis.org

0, 2, 3, 6, 9, 11, 12, 14, 17, 18, 23, 24, 26, 38, 41, 42, 44, 47, 48, 51, 53, 62, 63, 66, 68, 69, 77, 81, 86, 89, 93, 101, 102, 104, 108, 116, 117, 123, 128, 129, 138, 143, 144, 146, 147, 149, 152, 159, 167, 168, 171, 174, 177, 182, 191, 194
Offset: 1

Views

Author

Artur Jasinski, Jan 19 2007

Keywords

Crossrefs

Programs

  • Mathematica
    a = {}; Do[If[PrimeQ[16n + 5], AppendTo[a, n]], {n, 0, 200}]; a
    Select[Range[0,200],PrimeQ[16#+5]&] (* Harvey P. Dale, Aug 31 2020 *)
  • PARI
    is(n)=isprime(16*n+5) \\ Charles R Greathouse IV, Feb 17 2017