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”).

A060267
Difference between 2 closest primes surrounding 2n.
5
2, 2, 4, 4, 2, 4, 4, 2, 4, 4, 6, 6, 6, 2, 6, 6, 6, 4, 4, 2, 4, 4, 6, 6, 6, 6, 6, 6, 2, 6, 6, 6, 4, 4, 2, 6, 6, 6, 4, 4, 6, 6, 6, 8, 8, 8, 8, 4, 4, 2, 4, 4, 2, 4, 4, 14, 14, 14, 14, 14, 14, 14, 4, 4, 6, 6, 6, 2, 10, 10, 10, 10, 10, 2, 6, 6, 6, 6, 6, 6, 4, 4, 6, 6, 6, 6, 6, 6, 2, 10, 10, 10, 10, 10, 2, 4
OFFSET
2,1
LINKS
EXAMPLE
a(3) = 2 because the closest primes to 2*3 = 6 are (5,7) and the difference between these is 2. - Michael De Vlieger, Nov 02 2017
MAPLE
with(numtheory): [seq(nextprime(2*i)-prevprime(2*i), i=2..256)];
MATHEMATICA
Array[Subtract @@ NextPrime[#, {1, -1}] &[2 #] &, 96, 2] (* Michael De Vlieger, Nov 02 2017 *)
NextPrime[#]-NextPrime[#, -1]&/@(2*Range[2, 100]) (* Harvey P. Dale, Nov 07 2017 *)
PROG
(PARI) a(n) = nextprime(2*n+1) - precprime(2*n-1); \\ Michel Marcus, Sep 16 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 23 2001
STATUS
approved