OFFSET
1,3
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
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
AUTHOR
EXTENSIONS
More terms from James A. Sellers
STATUS
approved