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.

Showing 1-2 of 2 results.

A309877 a(n) is the smallest number k such that the difference between the next prime greater than k and k equals n.

Original entry on oeis.org

1, 0, 8, 7, 24, 23, 90, 89, 118, 117, 116, 115, 114, 113, 526, 525, 524, 523, 888, 887, 1130, 1129, 1338, 1337, 1336, 1335, 1334, 1333, 1332, 1331, 1330, 1329, 1328, 1327, 9552, 9551, 15690, 15689, 15688, 15687, 15686, 15685, 15684, 15683, 19616, 19615, 19614, 19613, 19612, 19611
Offset: 1

Views

Author

Ilya Gutkovskiy, Aug 21 2019

Keywords

Examples

			+------+------+-----+
| a(n) | next | gap |
|      | prime|     |
+------+------+-----+
|   1  |   2  |  1  |
|   0  |   2  |  2  |
|   8  |  11  |  3  |
|   7  |  11  |  4  |
|  24  |  29  |  5  |
|  23  |  29  |  6  |
|  90  |  97  |  7  |
|  89  |  97  |  8  |
+------+------+-----+
		

Crossrefs

Programs

  • Maple
    N:= 100:
    A:= Vector(N,-1):
    count:= 0: lastp:= 0:
    while count < N do
      p:= nextprime(lastp);
      newvals:= select(t -> A[t]=-1, [$1..min(p-lastp,N)]);
      count:= count+nops(newvals);
      for k in newvals do A[k]:= p-k od;
      lastp:= p;
    od:
    convert(A,list); # Robert Israel, Aug 23 2019
  • Mathematica
    Table[SelectFirst[Range[0, 20000], NextPrime[#] - # == n &], {n, 1, 50}]
    Module[{nn=20000,d},d=Table[{n,NextPrime[n]-n},{n,0,nn}];Table[SelectFirst[d,#[[2]]==k&],{k,50}]][[;;,1]] (* Harvey P. Dale, Mar 23 2025 *)
  • PARI
    a(n) = my(k=0); while(nextprime(k+1) - k != n, k++); k; \\ Michel Marcus, Aug 21 2019

Formula

a(n) = min {k : A013632(k) = n}.

A079582 Least positive k such that the distance from k to closest prime = n.

Original entry on oeis.org

2, 1, 9, 26, 93, 118, 119, 120, 531, 532, 897, 1140, 1339, 1340, 1341, 1342, 1343, 1344, 9569, 15702, 15703, 15704, 15705, 19632, 19633, 19634, 19635, 31424, 31425, 31426, 31427, 31428, 31429, 31430, 31431, 31432, 31433, 155958, 155959, 155960, 155961
Offset: 0

Views

Author

Benoit Cloitre, Jan 26 2003

Keywords

Comments

This sequence only differs from A077019 for n = 2: a(2) = 9 whereas A077019(2) = 0. - Rémy Sigrist, Dec 19 2019

Crossrefs

Programs

  • Mathematica
    a[n_] := Block[{s = 1}, While[ PrimeQ[s] || Min[s - NextPrime[s, -1], NextPrime[s] - s] != n, s++ ]; s]; a[0] = 2; Table[a[n], {n, 0, 40}]
  • PARI
    a(n)=if(n<0,0,s=1; while(abs(n-min(abs(precprime(s)-s),abs(nextprime(s)-s)))>0,s++); s)

Extensions

More terms from Robert G. Wilson v, Jan 27 2003
Name clarified by Rémy Sigrist, Dec 19 2019
Showing 1-2 of 2 results.