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.

A207990 Primes of the form prime(n) + prime(n+1) - 5.

Original entry on oeis.org

3, 7, 13, 19, 31, 37, 47, 73, 79, 107, 139, 157, 167, 181, 193, 199, 211, 263, 271, 283, 347, 367, 379, 457, 467, 487, 503, 571, 613, 619, 643, 691, 757, 823, 859, 877, 887, 919, 941, 997, 1039, 1187, 1231, 1279, 1307, 1423, 1489, 1579, 1601, 1627, 1663
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Table[Prime[n] + Prime[n + 1] - 5, {n, 200}], PrimeQ]
    Select[Total/@Partition[Prime[Range[200]],2,1]-5,PrimeQ] (* Harvey P. Dale, Apr 05 2020 *)
  • PARI
    p=2;forprime(q=3,1e4,if(isprime(t=p+q-5),print1(t", "));p=q) \\ Charles R Greathouse IV, Apr 13 2012