login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A051702
Distance from n-th prime to closest prime.
19
1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 2, 4, 2, 2, 4, 6, 2, 2, 4, 2, 2, 4, 4, 6, 4, 2, 2, 2, 2, 4, 4, 4, 2, 2, 2, 2, 6, 4, 4, 6, 2, 2, 2, 2, 2, 2, 12, 4, 2, 2, 4, 2, 2, 6, 6, 6, 2, 2, 4, 2, 2, 10, 4, 2, 2, 4, 6, 6, 2, 2, 4, 6, 6, 6, 4, 4, 6, 4, 4, 8, 2, 2, 2, 2, 4, 4, 6, 4, 2, 2, 4, 8, 4, 4, 4, 4, 6, 2, 2, 6, 6, 6, 6, 2
OFFSET
1,3
EXAMPLE
Closest primes to 2,3,5,7,11 are 3,2,3,5,13.
MATHEMATICA
a[n_] := Min[(p = Prime[n]) - NextPrime[p, -1], NextPrime[p] - p]; Table[a[n], {n, 1, 104}] (* Jean-François Alcover, May 27 2013 *)
Join[{1}, Min[Differences[#]]&/@Partition[Prime[Range[110]], 3, 1]] (* Harvey P. Dale, Sep 23 2016 *)
PROG
(PARI) a(n, p=prime(n))=min(p-precprime(p-1), nextprime(p+1)-p) \\ Charles R Greathouse IV, Feb 06 2017
CROSSREFS
KEYWORD
nonn,easy,nice
EXTENSIONS
More terms from James A. Sellers
STATUS
approved