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.

A071186 Numbers k such that prime(2*k)-2*prime(k) is prime.

Original entry on oeis.org

3, 4, 5, 6, 10, 11, 13, 15, 18, 19, 20, 26, 29, 33, 34, 37, 42, 43, 44, 49, 50, 60, 61, 62, 64, 65, 66, 72, 77, 79, 84, 89, 91, 92, 96, 97, 98, 99, 101, 103, 105, 109, 112, 118, 120, 126, 127, 128, 129, 130, 133, 135, 140, 144, 146, 152, 153, 155, 163, 166, 172, 173
Offset: 1

Views

Author

Benoit Cloitre, Jun 10 2002

Keywords

Comments

Numbers k such that A066066(k) is prime. - Amiram Eldar, May 19 2022

Crossrefs

Programs

  • Mathematica
    Select[Range[200], PrimeQ[Prime[2*#] - 2*Prime[#]] &] (* Amiram Eldar, May 19 2022 *)
  • PARI
    for(n=1,251,if(isprime(prime(2*n)-2*prime(n))==1,print1(n,",")))