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.

A139452 Numbers n such that primorial(n)/2 - 256 is prime.

Original entry on oeis.org

6, 8, 16, 27, 66, 74, 168, 253, 458, 1310, 2665, 2681, 2718, 2836, 4921, 7356, 11466
Offset: 1

Views

Author

Artur Jasinski, Apr 21 2008

Keywords

Comments

a(18) > 25000. - Robert Price, May 22 2017

Crossrefs

Programs

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

Extensions

Drop 3,4 and correct program, a(9)-a(14) from Ray Chandler, Jun 16 2013
a(15)-a(17) from Robert Price, May 22 2017