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.

A086173 Numbers k such that k*prime(k)-1 is prime.

Original entry on oeis.org

2, 8, 12, 14, 18, 30, 54, 66, 72, 80, 90, 94, 102, 110, 124, 144, 150, 160, 178, 184, 186, 198, 208, 210, 222, 224, 234, 250, 260, 264, 266, 280, 312, 336, 342, 370, 390, 400, 414, 432, 450, 462, 468, 470, 472, 476, 510, 564, 570, 596, 598, 600, 616, 652, 690
Offset: 1

Views

Author

Zak Seidov, Jul 11 2003

Keywords

Comments

Crossrefs

Programs

  • Magma
    [n: n in [1..800] | IsPrime(n*NthPrime(n) - 1)]; // Vincenzo Librandi, Oct 05 2012
  • Mathematica
    Select[Range[1000], PrimeQ[ # Prime[ # ]-1]&]