![]() |
|
|
#12 |
|
Dec 2010
Monticello
34038 Posts |
Hey, which of you will give us numeric results for a reasonable size set of numbers, say, twin primes up to 10^6?
This would be a good "project euler" problem.... |
|
|
|
|
|
#13 |
|
Jun 2003
10011110101002 Posts |
We have a pair of primes 6n+/-1. So the three numbers are: 12n-2, 12n, and 12n+2. Working mod 12, we see that the following are the valid pairs that can sum up to these numbers.
12n-2: { (1,9), (3,7), (5,5), (7,3), (9,1), (11,11) } 12n : { (1,11), (3,9), (5,7), (7,5), (9,3), (11,1) } 12n+2: { (1,1), (3,11), (5,9), (7,7), (9,5), (11,3) } However, the bolded pairs are also not valid, because at least one of the pairs is divisible by 3, and hence cannot be prime. So we see that the forms have 2:4:2 valid pairs. The result follows. We can extend this to higher primes than 3. For example, if we include 5, we note that all twins must be of the form 30n+6k+/-1 where k=0,2,3. Then the three cases are: k=0: twins are 30n+/-1: the forms are 60n-2, 60n, 60n+2: ratio 6:16:6 k=2: twins are 30n+12+/-1: the forms are 60n+22, 60n+24, 60n+26: ratio 6:12:6 k=3: twins are 30n+18+/-1: the forms are 60n+34, 60n+36, 60n+38: ratio 6:12:6 |
|
|
|
|
|
#14 | |
|
Aug 2006
3·1,993 Posts |
Quote:
https://oeis.org/A114907 and https://oeis.org/A007508 . Note in particular that Tomás Oliveira e Silva calculated the number of twin primes up to 10^18 as 808675888577436 and is extending the calculation to 4 * 10^18. * For better estimates with small numbers use the integral of 1/log^2 x rather than x/log^2 x. Last fiddled with by CRGreathouse on 2011-12-01 at 07:35 |
|
|
|
|
|
|
#15 | |
|
Jun 2003
10011110101002 Posts |
Quote:
|
|
|
|
|
|
|
#16 |
|
Jun 2003
22×33×47 Posts |
For your viewing pleasure:
![]() Code:
? default(primelimit, 10^6)
? goldbach(e)={my(c=0); forprime(p=3, e/2, c += isprime(e-p)); c}
? p1=5; forprime(p=7, default(primelimit), if(p-p1==2, write("D:\\a.txt", p1 " " goldbach(p1*2) " " goldbach(p1+p) " " goldbach(p*2))); p1=p);
? ##
*** last result computed in 16min, 50,060 ms.
|
|
|
|
|
|
#17 |
|
"Brian"
Jul 2007
The Netherlands
7×467 Posts |
Yes, it was incredibly naive of me to think that pairs of primes which sum to 2p, 2p+2, 2p+4 would be uniformly distributed. As axn explains, modular arithmetic shows the uneven occurrence of candidate pairs of which one number is divisible by 3 (and 5, and higher primes) with the 2p+2 getting twice as many of these. Thanks.
I guess anyone working on the Goldbach verification project will be well aware of this phenomenon. |
|
|
|
|
|
#18 |
|
May 2004
New York City
102138 Posts |
The OP did imply the assumption of the TP Conjecture, but there was
another motivation to this "puzzle". In "a.zip", the "Goldbach numbers" seem to increase "smoothly" over the 2p and 2q, but more raggedly over the 2p+2. Looking for patterns is a useful pasttime, and the OPer is interested in the possibility of finding a connection between the TP Conjecture and the GC, in the sense of mathematical equivalence. Empirically, for the small numbers (uo to like 10^18 ?) both conjectures appear to be true, and (admittedly brashly) perhaps by linking the two via statistical or analytic methods we might help solve both. |
|
|
|
|
|
#19 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
Quote:
|
|
|
|
|
|
|
#20 |
|
"Forget I exist"
Jul 2009
Dumbassville
20C016 Posts |
every integer >3
Last fiddled with by science_man_88 on 2011-12-02 at 23:45 |
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Relativistic Twins | davar55 | Science & Technology | 68 | 2015-01-20 21:01 |
| God or gold? | MooooMoo | Lounge | 7 | 2007-04-13 05:35 |
| The Treasure of the Gold Galleon | edorajh | Puzzles | 0 | 2006-03-26 19:43 |
| The Twins | GP2 | Lounge | 1 | 2003-11-18 04:50 |
| NOT twins | graeme | Puzzles | 11 | 2003-09-04 00:41 |