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.

A139455 Numbers n such that primorial(n)/2 + 1024 is prime.

Original entry on oeis.org

3, 4, 5, 7, 11, 14, 15, 22, 30, 32, 37, 53, 83, 123, 156, 212, 215, 314, 331, 417, 555, 930, 3809, 3945, 15738
Offset: 1

Views

Author

Artur Jasinski, Apr 21 2008

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    k = 1/2; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k + 1024], Print[n]; AppendTo[a, n]], {n, 325}]; a
  • PARI
    isok(n) = isprime(1024+prod(k=2, n, prime(k))); \\ Michel Marcus, Jul 02 2017

Extensions

a(18)-a(22) from Ray Chandler, Jun 16 2013
a(23)-a(25) from Robert Price, Jul 02 2017