OFFSET
0,4
COMMENTS
For an integer n >= 0 we say a prime p is gb-associated with n if sqrt(n) < p <= n/2 and no prime q which is <= sqrt(n) divides p*(p - n). Let GB(n) be the set of integers which are gb-associated with n. Then a(n) = Product_{k in GB(2*n)} k.
If a(n) != 1 for n >= 3 then Goldbach's conjecture is true. In this case m = max(GB(2*n)) exists and P = (2*n - m, m) is a Goldbach partition of 2*n (cf. A234345).
LINKS
Peter Luschny, Table of n, a(n) for n = 0..1000
Denise Vella-Chemla, Continuer de suivre Galois, 2013.
Wikipedia, Goldbach's conjecture
EXAMPLE
m: GB(m) -> Product(GB)
0: [] -> 1
2: [] -> 1
4: [] -> 1
6: [3] -> 3
8: [3] -> 3
10: [5] -> 5
...
90: [11, 17, 19, 23, 29, 31, 37, 43] -> 116883421171
92: [13, 19, 31] -> 7657
94: [11, 23, 41, 47] -> 487531
96: [13, 17, 23, 29, 37, 43] -> 234524537
98: [19, 31, 37] -> 21793
100: [11, 17, 29, 41, 47] -> 10450121
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Nov 08 2020
STATUS
approved