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.

A114227 Smallest odd prime q such that 2q + prime(n) is prime.

Original entry on oeis.org

3, 3, 3, 3, 3, 5, 3, 7, 3, 3, 3, 5, 3, 3, 7, 3, 3, 13, 3, 5, 3, 7, 3, 3, 3, 3, 11, 7, 5, 3, 7, 5, 7, 3, 3, 5, 3, 3, 7, 5, 3, 3, 7, 17, 11, 3, 3, 5, 3, 19, 5, 3, 3, 3, 7, 3, 3, 13, 5, 7, 3, 3, 17, 7, 3, 5, 3, 5, 3, 7, 3, 3, 5, 3, 37, 11, 19, 5, 7, 5, 13, 3, 5, 3, 7, 3, 3, 23, 37, 31, 11, 43, 5, 3, 7, 13, 17
Offset: 3

Views

Author

Lei Zhou, Nov 18 2005

Keywords

Crossrefs

Programs

  • Haskell
    a114227 n = head [p | p <- tail a000040_list,
                          a010051' (2 * p + a000040 n) == 1]
    -- Reinhard Zumkeller, Oct 29 2013
  • Mathematica
    Table[p1 = Prime[n1]; n2 = 2; p2 = 3; While[ cp = p1 + 2*p2; ! PrimeQ[cp], n2++; p2 = Prime[n2]]; p2, {n1, 3, 202}]