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.

A139461 Numbers k such that 2*prime(k+2) + product (first k odd primes) is prime, i.e., k such that primorial(k+1)/2 + 2*prime(k+2) is prime.

Original entry on oeis.org

1, 2, 3, 4, 8, 9, 11, 12, 27, 28, 37, 47, 64, 321, 415, 1222, 1649, 2937, 3600, 6149, 12481
Offset: 1

Views

Author

Artur Jasinski, Apr 22 2008

Keywords

Comments

a(22) > 25000. - Robert Price, Aug 06 2017

Crossrefs

Programs

  • Mathematica
    k = 1; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k + 2*Prime[n + 1]], AppendTo[a, n - 1]], {n, 2, 2000}]; a (* Artur Jasinski *)

Extensions

a(16)-a(21) from Robert Price, Aug 06 2017