OFFSET
10,1
COMMENTS
It's known that there is always a prime between n and 2n - 7 for all n >= 10.
LINKS
Michel Lagneau, Table of n, a(n) for n = 10..10000
Peter Vandendriessche and Hojoo Lee, Problems in elementary number theory, Problem E37
EXAMPLE
a(12) = 4 because 2*12-7 = 17, and the nearest prime p < 17 such that 12 < p < 17 is p = 13. Hence a(12) = 17 - 13 = 4.
MAPLE
with(numtheory):for n from 10 to 100 do:x:=2*n-7:i:=0:for p from x-1 by -1 to n+1 while(i=0) do:if type(p, prime)=true then i:=1:printf(`%d, `, x-p):else fi:od:od:
MATHEMATICA
Array[# - Prime@ PrimePi[# - 1] &[2 # - 7] &, 86, 10] (* Michael De Vlieger, Oct 17 2019 *)
#-NextPrime[#, -1]&/@(2Range[7, 150]-7) (* Harvey P. Dale, Feb 03 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, May 22 2012
STATUS
approved