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.

A139450 Numbers n such that primorial(n)/2 - 128 is prime.

Original entry on oeis.org

6, 7, 17, 26, 32, 40, 43, 391, 435, 1509, 1629, 2906, 3525, 5670, 8586, 12103, 12528, 16682
Offset: 1

Views

Author

Artur Jasinski, Apr 21 2008

Keywords

Comments

a(19) > 25,000. - Robert Price, May 02 2017

Crossrefs

Programs

  • Mathematica
    k = 1; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k - 128]&&k>128, Print[n]; AppendTo[a, n]], {n, 2, 325}]; a

Extensions

Drop 3,4 and correct program, a(9)-a(12) from Ray Chandler, Jun 16 2013
a(13)-a(18) from Robert Price, May 02 2017