OFFSET
1,1
COMMENTS
If 9 consecutive primes are p1, p2, p3 ... p9, p8 is included in the sequence if p8-p1 is less than p9-p8. - Harvey P. Dale, Mar 25 2013
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The seven closest primes to 15683 are 15679 (difference = 4), 15671 (difference = 12), 15667 (difference = 16), 15661 (difference = 22), 15649 (difference = 34) and 15647 (difference = 36). These are all smaller than 15683 so 15683 is in the list.
MATHEMATICA
NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; ps = {0, 0, 0, 0, 0, 0, 0, 0, 1}; Do[ps = Drop[ps, 1]; ps = Append[ps, NextPrim[ ps[[ -1]]]]; If[ ps[[ -1]] - ps[[ -2]] > ps[[ -2]] - ps[[1]], Print[ ps[[ -2]]]], {n, 1, 26185}]
Transpose[Select[Partition[Prime[Range[25000]], 9, 1], #[[8]]-#[[1]]<#[[9]]- #[[8]]&]][[8]](* Harvey P. Dale, Mar 25 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Neil Fernandez, Oct 10 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Oct 11 2002
STATUS
approved