![]() |
|
|
#12 | |
|
Jan 2019
Tallahassee, FL
24310 Posts |
Quote:
Unsurprising, Prime95 is exponentially faster since it is optimized to specifically test M_p for primality. |
|
|
|
|
|
|
#13 |
|
Feb 2021
Salt Lake City, UT
29 Posts |
Lucas-Lehmer test in native Mathematica:
p = 2976221; s = 4; Mp = 2^p - 1; Do[s = Mod[(s*s - 2) , Mp]; If[s == 0, Print["PRIME"]], {i, 0, p - 2}]; puts me in top prime guys fast at least in 60-ties (below GHz*Day). Last fiddled with by mattprim on 2021-02-12 at 00:14 |
|
|
|
|
|
#14 |
|
6809 > 6502
"""""""""""""""""""
Aug 2003
101×103 Posts
22×23×107 Posts |
|
|
|
|
|
|
#15 |
|
Romulan Interpreter
Jun 2011
Thailand
26×151 Posts |
He means the year. His test is as fast as some supercomputer ~55 years ago
. Albeit I have to admit I don't know how to pronounce the the thing he wrote... sixty ties? sixty tits?
Last fiddled with by LaurV on 2021-02-12 at 02:32 |
|
|
|
|
|
#16 | |
|
Romulan Interpreter
Jun 2011
Thailand
26×151 Posts |
Quote:
Homework: prove this is not possible. Last fiddled with by LaurV on 2021-02-12 at 02:47 |
|
|
|
|
|
|
#17 | |
|
Feb 2021
Salt Lake City, UT
2910 Posts |
Quote:
my(m=Mod(4,1<<p-1)); for(i=3,p,m=m^2-2); m==0 }; ? ? search()={ print("2^2-1"); forprime(p=3,43112609, if(LL(p), print("2^"p"-1")) ) }; ? search() 2^2-1 2^3-1 2^5-1 2^7-1 2^13-1 2^17-1 2^19-1 2^31-1 2^61-1 2^89-1 2^107-1 2^127-1 2^521-1 2^607-1 2^1279-1 2^2203-1 2^2281-1 2^3217-1 2^4253-1 2^4423-1 2^9689-1 2^9941-1 2^11213-1 2^19937-1 2^21701-1 2^23209-1 Last fiddled with by mattprim on 2021-02-12 at 09:27 |
|
|
|
|
|
|
#18 | |
|
Feb 2021
Salt Lake City, UT
29 Posts |
Quote:
Last fiddled with by mattprim on 2021-02-12 at 10:17 |
|
|
|
|
|
|
#19 |
|
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
26·5·17 Posts |
Mods: relocate thread to Misc Math?
Last fiddled with by kriesel on 2021-02-12 at 17:05 |
|
|
|
|
|
#20 |
|
6809 > 6502
"""""""""""""""""""
Aug 2003
101×103 Posts
22×23×107 Posts |
|
|
|
|
|
|
#21 | |
|
Jan 2019
Tallahassee, FL
35 Posts |
Quote:
![]() Also Fermats littles theorem could be proven using Lagrange in one sentence. And what the heck is integer space to irrational roots you mean extension fields? It’s not necessary to tell people here how Prime95 works.. what have we done to deserve this? |
|
|
|
|
|
|
#22 |
|
Feb 2021
Salt Lake City, UT
358 Posts |
Also PariGP LL test for n=41766037 https://www.mersenne.ca/exponent/41766037 on above 1GHz Machine some 12 seconds per step at 240-th step and slowing down. Extimated check time 5800 days above 10 years so native Mathematica above 100 years.
? default(parisize,"64M") *** Warning: new stack size = 64000000 (61.035 Mbytes). ? LL(p)={ my(m=Mod(4,1<<p-1));print(p); for(i=3,p,m=m^2-2;print(i)); m==0 }; ? ? search()={ print("2^2-1"); p=41766037; if(LL(p), print("2^"p"-1") ) }; ? search() 2^2-1 41766037 3 4 5 6 . . . 239 240 Last fiddled with by mattprim on 2021-02-12 at 20:18 |
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Searching for m. primes is like playing lottery | joblack | Lounge | 20 | 2009-01-05 15:18 |
| to be faster at searching mersenne primes | flosculus | Information & Answers | 6 | 2008-11-10 18:59 |
| searching for Mersenne primes | davieddy | Math | 7 | 2007-08-21 04:51 |
| A Proposal for searching Recurrence Series Primes | Erasmus | Factoring | 3 | 2004-05-14 09:26 |
| Need help with math problem re: searching for all primes. | daxm | Miscellaneous Math | 5 | 2003-07-20 19:32 |