![]() |
|
|
#177 |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
Okay maybe not but I made a list of things last night that we know must happen if the GC is correct.
1) all even>3 = prime + prime 2)all numbers>1 must be equidistant from 2 primes including distance=0 3)distance is opposite parity to number except number=2 but these lead to a conundrum and namely that allowing distance=0 means technically anyone could claim all numbers >1 are prime. so again: 1) all even>7 = prime + prime 2)all numbers>3 must be equidistant from 2 primes 3) distance is opposite parity to number. anyone care to add any more? |
|
|
|
|
|
#178 | |
|
May 2010
Prime hunting commission.
24×3×5×7 Posts |
The first even example where Goldbach's Conjecture is correct is actually 4:
4 = 2 + 2, followed by 6 = 3 + 3, etc. This has been tested to about 1015 if I remember correctly. Quote:
Last fiddled with by 3.14159 on 2010-09-07 at 12:59 |
|
|
|
|
|
|
#179 | |
|
"Forget I exist"
Jul 2009
Dumbassville
203008 Posts |
Quote:
#n; distance = 0 = #n,#n #n must be prime. |
|
|
|
|
|
|
#180 | |
|
May 2010
Prime hunting commission.
24×3×5×7 Posts |
Quote:
The only way these two could be invalidated is if you do not count p*2 as being valid. |
|
|
|
|
|
|
#181 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
Quote:
Code:
for(c=2,500,if(c%2==0,forstep(n=1,c-3,2,if(isprime(c-n) && isprime(c+n),print(c","n);break())),forstep(n=0,c-3,2,if(isprime(c-n) && isprime(c+n),print(c","n);break())))) |
|
|
|
|
|
|
#182 |
|
Aug 2006
3·1,993 Posts |
One step better:
Code:
forstep(c=2,500,2,forstep(n=1,c-3,2,if(isprime(c-n) && isprime(c+n),print(c","n);break));forstep(n=0,c-3,2,if(isprime(c-n) && isprime(c+n),print(c","n);break))) |
|
|
|
|
|
#183 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
Quote:
|
|
|
|
|
|
|
#184 |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
oh wait your code checks only even c my idea checks both so mine must do about twice the work in .25* time. I can't use my alteration on yours as my alteration speeds up checks for odd c only and yours doesn't check any odd c's
|
|
|
|
|
|
#185 |
|
Aug 2006
3·1,993 Posts |
Oh, I see what you're doing. Ignore my post, I translated it wrong. I could fix it but it's too much of a pain to do so efficiently.
|
|
|
|
|
|
#186 |
|
"Forget I exist"
Jul 2009
Dumbassville
838410 Posts |
I think what you missed at first was the c+n part as it shows something above c hence c can't be the even number that are sum of 2 primes as c+n would have to sum with a negative number to get c.
|
|
|
|
|
|
#187 |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
Code:
(16:31) gp > (s^2-2)/(2^p-1) %89 = (1.442695040888963407359924681*p^-1 - 0.5000000000000000000000000000 + 0.05776226504666210911810267679*p + 0.E-30*p^2 - 0.0004625342388735131662761855314*p^3 - 2.445106030 E-32*p^4 + 0.000005291094502550969612465167461*p^5 - 1.041948592 E-34*p^6 - 0.0000 0006355305751691600116677266267*p^7 + 1.248167584 E-35*p^8 + 0.0000000007710671219120984642037884552*p^9 - 1.611085877 E-37*p^10 - 9.376883229129214727836136500 E-12*p^11 + 2.649812298 E-39*p^12 + 1.140957404492010740074329500 E-13*p^13 - 2.484199030 E-41*p^14 + O(p^15))*s^2 + (-2.885390081777926814719849362*p^-1 + 1.000000000000000000000000000 - 0.1155245300933242182362053536*p + 0.E-30*p^2 + 0.0009250684777470263325523710627*p^3 + 4.890212060 E-32*p^4 - 0.00001058218900510193922493033492*p^5 + 2.083897185 E-34*p^ 6 + 0.0000001271061150338320023335453253*p^7 - 2.496335169 E-35*p^8 - 0.000000001542134243824196928407576910*p^9 + 3.222171754 E-37*p^10 + 1.875376645825842945567227300 E-11*p^11 - 5.299624596 E-39*p^12 - 2.281914808984021480148658999 E-13*p^13 + 4.96839805 E- 41*p^14 + O(p^15)) |
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Goldbach Conjecture | MattcAnderson | MattcAnderson | 4 | 2021-04-04 19:21 |
| Factorial and Goldbach conjecture. | MisterBitcoin | MisterBitcoin | 17 | 2018-01-29 00:50 |
| Goldbach's weak conjecture | MattcAnderson | MattcAnderson | 19 | 2017-03-21 18:17 |
| Goldbach's conjecture | Citrix | Puzzles | 3 | 2005-09-09 13:58 |