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.

A139454 Numbers n such that primorial(n)/2 - 512 is prime.

Original entry on oeis.org

5, 6, 9, 10, 11, 12, 17, 18, 23, 36, 48, 62, 87, 112, 131, 400, 1606, 6136, 6519, 11700
Offset: 1

Views

Author

Artur Jasinski, Apr 21 2008

Keywords

Comments

a(21) > 25000. - Robert Price, Jul 02 2017

Crossrefs

Programs

  • Mathematica
    k = 1; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k - 512]&&k>512, Print[n]; AppendTo[a, n]], {n, 2, 325}]; a (* corrected by Ray Chandler, Jun 16 2013 *)

Extensions

Dropped 2 and a(16)-a(17) from Ray Chandler, Jun 16 2013
a(18)-a(20) from Robert Price, Jul 02 2017