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.

A065046 Numbers k such that prime(k) - pi(k) is a prime.

Original entry on oeis.org

1, 2, 3, 4, 7, 9, 14, 15, 16, 19, 22, 30, 38, 44, 55, 64, 79, 81, 90, 91, 93, 94, 96, 101, 113, 115, 117, 118, 121, 122, 123, 124, 125, 133, 142, 148, 163, 173, 176, 178, 182, 183, 185, 189, 190, 199, 205, 206, 208, 223, 226, 232, 239, 240, 251, 253, 255, 263
Offset: 1

Views

Author

Robert G. Wilson v, Nov 05 2001

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[300], PrimeQ[Prime[ # ] - PrimePi[ # ]] & ]
  • PARI
    isok(m) = isprime(prime(m) - primepi(m)); \\ Harry J. Smith, Oct 04 2009