OFFSET
1,1
COMMENTS
These primes need not necessarily occur before a large prime gap.
Do they occur less frequently than twin primes?
FORMULA
Found by inspecting a table of factors and primes.
EXAMPLE
For P(n)=1237 and P(n+1)=1249, 2*1237 - 1249 = 1225 = 5^2 * 7^2
and 5,7 < 1249 - 1237 = 12.
MATHEMATICA
Join[{3}, Prime[Select[Range[3, 2000], FactorInteger[2*Prime[ # ] - Prime[ # + 1]][[ -1, 1]] < Prime[ # + 1] - Prime[ # ] &]]] (* Stefan Steinerberger, Jan 31 2009 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
J. M. Bergot, Jan 20 2009
EXTENSIONS
Corrected and extended by Stefan Steinerberger, Jan 31 2009
STATUS
approved