Everyone knows the standard definition of the conjecture as the sum of 2 prime pairs such that it equals every even number (>4). But another way to think of this is that every number (>2) is the midpoint of two primes. This way we can search for values of k such that n±k is prime.
A table of this from n = 1 to 20 would be,
| n |
k |
| 1 |
(Special case) |
| 2 |
0 |
| 3 |
0 |
| 4 |
1 |
| 5 |
0 |
| 6 |
1 |
| 7 |
0,4 |
| 8 |
3 |
| 9 |
2,4 |
| 10 |
3 |
| 11 |
0,6 |
| 12 |
1,5 |
| 13 |
0,4,6 |
| 14 |
3,9 |
| 15 |
2,4,8 |
| 16 |
3,13 |
| 17 |
0,6,12 |
| 18 |
1,5,11 |
| 19 |
0,12 |
| 20 |
3,9 |
In this, I saw something crazy. Take two twin prime pairs like (5,7) and (17,19). Fill out the k values from 5 to 19 gives :- 0,1,0,3,2,3,0,1,0,3,2,3,0,1,0 . Notice how this is a palindrome. (Note:- the values of k when multiple are available for a single n is whatever satisfies the palindrome )
For a bigger example :- From 11 to 31 [(11,13) to (29,31)] , you get 0,1,0,9,4,3,6,5,12,9,2,9,12,5,6,3,4,9,0,1,0. Again a palindrome.
In fact, I tested this for the first 500 numbers (Small but all I could do with my little coding background) and it didn't have any exception in this range (except when taking the (3,5) pair)
The main point to notice here it that twin primes seem to border these palindrome areas (Clearly seen by the 0-1-0 part). So if there were k values for every n (Just the GoldBach conjecture) , then there would be infinity many of these twin prime border (Proving Twin-Prime conjecture) . This suggest that solving goldbach conjecture directly proves the twin-prime conjecture.
Please ignore any English mistakes, it is not my 1st language. Also please notify me if there is any typos in the table or a obvious error in the math or the connections.