![]() |
|
|
#23 |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
3×5×137 Posts |
Well, I do have a detailed algorithm which may or may not speed thins up
, but in short Pari-code does the sieving and if the candidates don't have small factors it writes the input file for the PFGW and launches it using the system command. I even have counter outputs for multi-threading, but at this stage the PFGW is too fast to use it. It takes longer to read and write to harddisk than finish the primality test,
|
|
|
|
|
|
#24 |
|
Sep 2002
Database er0rr
3,739 Posts |
Code:
273249*6*(2^4423-1)-1 is 3-PRP! (0.0079s+0.0031s) 273249*6*(2^4423-1)+1 is 3-PRP! (0.0079s+0.0029s) Code:
ABC2 $a*6*(2^4423-1)-1 & $a*6*(2^4423-1)+1 a: from 1 to 100000000 |
|
|
|
|
|
#25 | |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
80716 Posts |
Quote:
![]() I am still at 196998 since last night and that's for M4253. ![]() There are ranges where sieving for small factors on PARI would be faster than PFGW, I am pretty sure. Last fiddled with by a1call on 2019-12-08 at 01:49 |
|
|
|
|
|
|
#26 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
36·13 Posts |
Quote:
2. Any number less than 10,000 digits won't be worth the paper it is written on. Why not just start with M44497 (...and that's only for a warm up) ? |
|
|
|
|
|
|
#27 | ||
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
3·5·137 Posts |
Quote:
Quote:
* There's is a value to a complete set even if it includes single digit primes. * I am doing this as a hobby * There is already indications towards the facts that there is a bias for small k values which is an indication for infinitude of twin primes. Plus I have 3 cores working for the 80k Mersenne for days now and on last check they only found a single non-twin prime so far. Thank you for the sieving tips. I will look into them. Last fiddled with by a1call on 2019-12-08 at 02:58 |
||
|
|
|
|
|
#28 |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
205510 Posts |
407635.6.M4253 +/- 1 are a pair of minimal Twin-Primes for M4253 with 1287 dd each.
Found Using PFGW and PaulUnderwood. ![]() ETA: Looks like someone fed these to factorDB more than a year ago: http://factordb.com/index.php?query=...4253-1%29%2B1+ http://factordb.com/index.php?query=...5E4253-1%29-1+ Last fiddled with by a1call on 2019-12-08 at 03:22 |
|
|
|
|
|
#29 | ||
|
Sep 2002
Database er0rr
3,739 Posts |
Quote:
Quote:
Code:
cat > mersenne_twin_4423.helper 2 3 3 3 97 113 2^4423-1 Code:
./pfgw64 -N -tp -q"273249*6*(2^4423-1)-1" -h"mersenne_twin_4423.helper" PFGW Version 4.0.1.64BIT.20191203.x86_Dev [GWNUM 29.8] Primality testing 273249*6*(2^4423-1)-1 [N+1, Brillhart-Lehmer-Selfridge] Reading factors from helper file mersenne_twin_4423.helper Running N+1 test using discriminant 3, base 3+sqrt(3) 273249*6*(2^4423-1)-1 is prime! (0.1872s+0.0158s) Code:
./pfgw64 -N -t -q"273249*6*(2^4423-1)+1" -h"mersenne_twin_4423.helper" PFGW Version 4.0.1.64BIT.20191203.x86_Dev [GWNUM 29.8] Primality testing 273249*6*(2^4423-1)+1 [N-1, Brillhart-Lehmer-Selfridge] Reading factors from helper file mersenne_twin_4423.helper Running N-1 test using base 2 273249*6*(2^4423-1)+1 is prime! (0.0355s+0.0001s) Last fiddled with by paulunderwood on 2019-12-08 at 03:43 |
||
|
|
|
|
|
#30 |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
3·5·137 Posts |
I have no idea where that quote is from (except that it seems to be from the "The Prime Database"), but it certainly does not seem to be from any source that is indexed by Google.
|
|
|
|
|
|
#31 |
|
Sep 2002
Database er0rr
3,739 Posts |
|
|
|
|
|
|
#32 | |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
1000000001112 Posts |
FTR:
For M9689 I rewrote my Pari-GP code so that it does sieving in Pari-GP but without multitthreading (writing out a counter where multiple instances can read a common counter ), and it is much faster to sieve in Pari and feeding it to PFGW, than running ABC2 in PFGW alone. FTR: I still don't know how Paul got the July 2012 information. in this link: http://factordb.com/index.php?query=...4253-1%29%2B1+ If i click on More information I get: Quote:
Last fiddled with by a1call on 2019-12-09 at 01:32 |
|
|
|
|
|
|
#33 | |
|
Sep 2002
Database er0rr
3,739 Posts |
Quote:
Last fiddled with by paulunderwood on 2019-12-09 at 01:40 |
|
|
|
|