OFFSET
1,1
COMMENTS
It is conjectured that there does not exist a Goldbach partition yielding a Goldbach "gap" of n as defined, for n=58,62,82,....
These are the even numbers that do not appear in A112824.
MATHEMATICA
f[n_] := Block[{p = 2, q = n/2}, While[ !PrimeQ[p] || !PrimeQ[n - p], p++ ]; While[ !PrimeQ[q] || !PrimeQ[n - q], q-- ]; q - p];
t = Table[0, {10000}];
Do[a = f[2n]; If[a < 10000 && t[[a/2 + 1]] == 0, t[[a/2 + 1]] = 2n], {n, 2, 10^6}];
Take[ 2*Flatten[ Position[t, 0] - 1], 52]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 05 2005
EXTENSIONS
Corrected by T. D. Noe, Feb 14 2011
STATUS
approved