mersenneforum.org  

Go Back   mersenneforum.org > Prime Search Projects > Twin Prime Search

Reply
 
Thread Tools
Old 2007-01-15, 07:41   #1
eric_v
 
eric_v's Avatar
 
Sep 2006
France

23×3 Posts
Default WE MADE IT!!!!!!!!!!!!!!!!!!!!!!

I didn't believe it when I saw something in the output file... but it was true :

2003663613*2^195000-1 is prime!
2003663613*2^195000+1 is prime!

I hope there's no bug in the program

I let you cross-check it...

Eric
eric_v is offline   Reply With Quote
Old 2007-01-15, 08:19   #2
paulunderwood
 
paulunderwood's Avatar
 
Sep 2002
Database er0rr

2×74 Posts
Default



I've checked:

Quote:
./pfgw_ver_12_linux -q"2003663613*2^195000+1" -t
PFGW Version 1.2.0 for Pentium and compatibles [FFT v23.8]

Primality testing 2003663613*2^195000+1 [N-1, Brillhart-Lehmer-Selfridge]
Running N-1 test using base 11
Calling Brillhart-Lehmer-Selfridge with factored part 99.98%
2003663613*2^195000+1 is prime! (215.9000s+0.0005s)
and:

Quote:
./pfgw_ver_12_linux -q"2003663613*2^195000-1" -tp
PFGW Version 1.2.0 for Pentium and compatibles [FFT v23.8]

Primality testing 2003663613*2^195000-1 [N+1, Brillhart-Lehmer-Selfridge]
Running N+1 test using discriminant 5, base 1+sqrt(5)
Calling Brillhart-Lehmer-Selfridge with factored part 99.98%
2003663613*2^195000-1 is prime! (601.2919s+0.0216s)
paulunderwood is offline   Reply With Quote
Old 2007-01-15, 08:31   #3
XYYXF
 
XYYXF's Avatar
 
Jan 2005
Minsk, Belarus

24×52 Posts
Default

Congratulations!

A nice pair. :)
XYYXF is offline   Reply With Quote
Old 2007-01-15, 08:41   #4
ValerieVonck
 
ValerieVonck's Avatar
 
Mar 2004
Belgium

7×112 Posts
Default

Congratulations!
ValerieVonck is offline   Reply With Quote
Old 2007-01-15, 08:45   #5
R. Gerbicz
 
R. Gerbicz's Avatar
 
"Robert Gerbicz"
Oct 2005
Hungary

24×103 Posts
Default

Quote:
Originally Posted by paulunderwood View Post
I've checked:
Yes, you should have to check this, because for k*2^n-1 the LLR do *only* a PRP test, because a true primality test is a little slower. The primality test is a classical p+1 test. ( I think for k*2^n+1 a PRP test is equivalent to a Proth test in LLR so that sholud be OK ).

You've beaten the hungarian Járai Antal and his team's twin prime record at ELTE.

Last fiddled with by R. Gerbicz on 2007-01-15 at 09:00
R. Gerbicz is offline   Reply With Quote
Old 2007-01-15, 09:04   #6
pacionet
 
pacionet's Avatar
 
Oct 2005
Italy

3×113 Posts
Default

I hope that twinprimesearch.org will be cited in the papers on this discovery.
Thanks to everybody !
pacionet is offline   Reply With Quote
Old 2007-01-15, 09:08   #7
Skligmund
 
Skligmund's Avatar
 
Dec 2006
Anchorage, Alaska

1168 Posts
Default

I hope the proper channels were used to notify, in order to keep others from reporting the twin prime.

GJ!!!!
Skligmund is offline   Reply With Quote
Old 2007-01-15, 09:17   #8
pacionet
 
pacionet's Avatar
 
Oct 2005
Italy

5238 Posts
Default

I emailed Chris Caldwell telling this discovery. Please write down the names (name , surname, age and country) of the people who should get credit of this discovery.

Even if twinprimesearch.org should not get any credit, i Hope that you agree that it should be cited in the papers of the discovery.

I think something like that:

"Today, January 15, 2007 two distributed computing projects, Twin Internet Prime Search and PrimeGrid, have found the largest known twin primes: 2003663613*2^195000-1 and
2003663613*2^195000+1 . The numbers have XXXX digits. The discovery was made by: <LIST OF THE PEOPLE WHO GETS CREDITS>".

we should send this news to the Guinness World Records.

Last fiddled with by pacionet on 2007-01-15 at 09:27
pacionet is offline   Reply With Quote
Old 2007-01-15, 09:38   #9
R. Gerbicz
 
R. Gerbicz's Avatar
 
"Robert Gerbicz"
Oct 2005
Hungary

24×103 Posts
Default

Quote:
Originally Posted by pacionet View Post
The numbers have XXXX digits.
The twins have 58711 digits (in base 10).
I've also finished a check by pfgw on my slow computer:
Code:
PFGW Version 20050213.Win_Dev (Alpha/IBDWT 'caveat utilitor') 
Primality testing 2003663613*2^195000+1 [N-1 Proth test]
Running N-1 Proth test using base 11 (2^195000 is 99.985% of N-1)
2003663613*2^195000+1 is prime! (477.5060s+0.0083s)

Done.
PFGW Version 20050213.Win_Dev (Alpha/IBDWT 'caveat utilitor') 
Primality testing 2003663613*2^195000-1 [N+1, Brillhart-Lehmer-Selfridge]
Running N+1 test using discriminant 5, base 1+sqrt(5)
Calling Brillhart-Lehmer-Selfridge with factored part 99.98%
2003663613*2^195000-1 is prime! (3448.9456s+0.0122s)

Done.

Last fiddled with by R. Gerbicz on 2007-01-15 at 09:40
R. Gerbicz is offline   Reply With Quote
Old 2007-01-15, 09:52   #10
pacionet
 
pacionet's Avatar
 
Oct 2005
Italy

3×113 Posts
Default

My special thanks for this discovery:

- eric_v , of course;
- MooooMoo
- gribozavr
- PrimeGrid
- Jean Penne' for LLR
- Paul Jobling for NewPGen

and ... myself

Now, it's time to move to next exponent !

Last fiddled with by pacionet on 2007-01-15 at 09:57
pacionet is offline   Reply With Quote
Old 2007-01-15, 09:54   #11
Jean Penné
 
Jean Penné's Avatar
 
May 2004
FRANCE

5×127 Posts
Default

Quote:
Originally Posted by R. Gerbicz View Post
Yes, you should have to check this, because for k*2^n-1 the LLR do *only* a PRP test, because a true primality test is a little slower. The primality test is a classical p+1 test. ( I think for k*2^n+1 a PRP test is equivalent to a Proth test in LLR so that sholud be OK ).

You've beaten the hungarian Járai Antal and his team's twin prime record at ELTE.
Congratulations for this beautiful record!
Please note that LLR does a deterministic primality test on both k*2^n+1 and k*2^n-1 numbers, not a PRP! It actually does a PRP test only if the base is not two.
Regards,
Jean
Jean Penné is online now   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Somebody made a numerical mistake Arkadiusz Math 20 2009-12-22 16:07
What every American should be made to learn about garo Soap Box 18 2009-09-07 10:06
You would-be sleuths made it much harder... ewmayer Lounge 6 2008-09-17 18:09
less v4 reservations being made tha PrimeNet 8 2008-08-14 08:26
Who made the new logo? Kevin Lounge 10 2002-08-23 00:55

All times are UTC. The time now is 14:22.


Fri Sep 22 14:22:27 UTC 2023 up 9 days, 12:04, 1 user, load averages: 0.86, 0.98, 0.98

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.

≠ ± ∓ ÷ × · − √ ‰ ⊗ ⊕ ⊖ ⊘ ⊙ ≤ ≥ ≦ ≧ ≨ ≩ ≺ ≻ ≼ ≽ ⊏ ⊐ ⊑ ⊒ ² ³ °
∠ ∟ ° ≅ ~ ‖ ⟂ ⫛
≡ ≜ ≈ ∝ ∞ ≪ ≫ ⌊⌋ ⌈⌉ ∘ ∏ ∐ ∑ ∧ ∨ ∩ ∪ ⨀ ⊕ ⊗ 𝖕 𝖖 𝖗 ⊲ ⊳
∅ ∖ ∁ ↦ ↣ ∩ ∪ ⊆ ⊂ ⊄ ⊊ ⊇ ⊃ ⊅ ⊋ ⊖ ∈ ∉ ∋ ∌ ℕ ℤ ℚ ℝ ℂ ℵ ℶ ℷ ℸ 𝓟
¬ ∨ ∧ ⊕ → ← ⇒ ⇐ ⇔ ∀ ∃ ∄ ∴ ∵ ⊤ ⊥ ⊢ ⊨ ⫤ ⊣ … ⋯ ⋮ ⋰ ⋱
∫ ∬ ∭ ∮ ∯ ∰ ∇ ∆ δ ∂ ℱ ℒ ℓ
𝛢𝛼 𝛣𝛽 𝛤𝛾 𝛥𝛿 𝛦𝜀𝜖 𝛧𝜁 𝛨𝜂 𝛩𝜃𝜗 𝛪𝜄 𝛫𝜅 𝛬𝜆 𝛭𝜇 𝛮𝜈 𝛯𝜉 𝛰𝜊 𝛱𝜋 𝛲𝜌 𝛴𝜎𝜍 𝛵𝜏 𝛶𝜐 𝛷𝜙𝜑 𝛸𝜒 𝛹𝜓 𝛺𝜔