[go: up one dir, main page]

login
Revision History for A112826 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Conjectured values of A112825 which are 0.
(history; published version)
#17 by Michael De Vlieger at Mon Mar 13 07:19:43 EDT 2023
STATUS

reviewed

approved

#16 by Joerg Arndt at Mon Mar 13 06:49:34 EDT 2023
STATUS

proposed

reviewed

#15 by Joerg Arndt at Mon Mar 13 06:49:32 EDT 2023
STATUS

editing

proposed

#14 by Joerg Arndt at Mon Mar 13 06:49:09 EDT 2023
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]

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]

STATUS

proposed

editing

#13 by Michel Marcus at Mon Mar 13 06:34:47 EDT 2023
STATUS

editing

proposed

#12 by Michel Marcus at Mon Mar 13 06:34:43 EDT 2023
EXTENSIONS

Corrected by _T. D. Noe, _, Feb 14 2011

STATUS

approved

editing

#11 by Russ Cox at Fri Mar 30 17:31:17 EDT 2012
AUTHOR

_Robert G. Wilson v (rgwv(AT)rgwv.com), _, Sep 05 2005

Discussion
Fri Mar 30
17:31
OEIS Server: https://oeis.org/edit/global/156
#10 by T. D. Noe at Mon Feb 14 12:40:39 EST 2011
STATUS

proposed

approved

#9 by T. D. Noe at Mon Feb 14 12:39:52 EST 2011
COMMENTS

It is conjectured that there does not exist a Goldbach partition yielding a Goldbach "gap" of n as defined, for n=60,64,58,62,82,....

#8 by T. D. Noe at Mon Feb 14 12:38:50 EST 2011
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[ 2Flatten2*Flatten[ Position[t, 0] - 1], 52]