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.

A202115 Numbers n such that 90n + 17 is prime.

Original entry on oeis.org

0, 1, 2, 5, 6, 7, 9, 12, 13, 14, 15, 18, 21, 22, 23, 25, 26, 27, 32, 35, 36, 37, 39, 40, 42, 46, 48, 50, 53, 54, 55, 57, 58, 60, 61, 65, 67, 70, 76, 77, 79, 81, 83, 84, 86, 88, 90, 92, 93, 97, 98, 104, 105, 111, 116, 123, 124, 127, 130, 131, 132, 133, 137
Offset: 1

Views

Author

J. W. Helkenberg, Dec 11 2011

Keywords

Crossrefs

Programs

  • Maple
    select(t -> isprime(90*t+17),[$0..1000]); # Robert Israel, Sep 02 2014
  • Mathematica
    Select[Range[0, 200], PrimeQ[90 # + 17] &]
  • PARI
    is(n)=isprime(90*n+17) \\ Charles R Greathouse IV, Feb 20 2017