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.

A023188 Lonely (or isolated) primes: least prime of distance n from nearest prime (n = 1 or even).

Original entry on oeis.org

2, 5, 23, 53, 409, 293, 211, 1847, 3137, 2179, 3967, 23719, 16033, 40387, 44417, 24281, 158699, 220973, 172933, 321509, 38501, 58831, 203713, 268343, 206699, 829399, 824339, 413353, 2280767, 2305549, 3253631, 1272749, 2401807, 2844833, 3021241
Offset: 1

Views

Author

Keywords

Comments

a(1)=least prime of distance 1 from nearest prime.
if n>1 a(n)=least prime of distance 2n-2 from nearest prime.

Crossrefs

Programs

  • Mathematica
    NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; a = Table[0, {35}]; p = 2; q = 3; k = 1; Do[r = NextPrim[q]; m = Min[r - q, q - p]/2; If[m < 35 && a[[m]] == 0, a[[m]] = q]; p = q; q = r, {n, 1, 235000}]
    Join[{2},Transpose[Flatten[Table[Select[Partition[Prime[ Range[ 1000000]],3,1], Min[ Differences[#]] == 2n&,1],{n,40}],1]][[2]]](* Harvey P. Dale, Nov 17 2013 *)

Extensions

a(36)-a(65) from Daniel Lignon, Aug 07 2015