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.

A098649 Primes of the form 2(p+q) + 1, where p and q are consecutive primes.

Original entry on oeis.org

11, 17, 37, 61, 73, 137, 157, 181, 241, 257, 277, 373, 397, 409, 421, 433, 577, 601, 617, 641, 661, 769, 821, 1097, 1117, 1129, 1153, 1201, 1237, 1249, 1297, 1453, 1481, 1597, 1621, 1657, 1861, 1933, 2089, 2129, 2281, 2297, 2417, 2441, 2473, 2749, 2857, 3037
Offset: 1

Views

Author

Giovanni Teofilatto, Sep 18 2004

Keywords

Comments

a(n) == 1 (mod 4), except for the initial term.

Crossrefs

Cf. A097361.

Programs

  • Mathematica
    Select[ Table[2(Prime[i] + Prime[i + 1]) + 1, {i, 150}], PrimeQ[ # ] &] (* Robert G. Wilson v, Sep 19 2004 *)
    Select[2*Total[#]+1&/@Partition[Prime[Range[200]],2,1],PrimeQ] (* Harvey P. Dale, Dec 25 2019 *)

Extensions

More terms from Robert G. Wilson v, Sep 19 2004