Author |
Message |
|
So I managed to download Yves Gallot's program, Proth. I also downloaded PrimeForm (allows more forms of prime to be found). I'm currently searching for primes that are 11998 and 27560 digits in length. My personal record is a 13050-digit prime (Generalized Fermat prime, 1534^4096 + 1). The 27560-digit prime is a Proth prime. The 11998-digit prime to be searched for is a misc. prime:
It's of the form: (p(a)#)^c * (p(b)#)^d * (n! * x! * k) + 1, where a = 821, b = 126, c = 4, d = 4, n = 7, x = 11. The 27560-digit prime search, I have been conducting for two days: My exponent range is in between 91360 and 93200, and the range of the coefficient k is in between 10^4 and 10^5, so I'm testing about 165,600,000 candidates. By the time the search is over, I should have 2609 primes, between 27560 and 28114 digits in length, snapping my personal record by a factor of two. Any tips?
|
|
|
|
I left the machine on overnight, and found a prime of 27507 digits, which now makes it my personal record, snapping the previous by a factor of two. Now, I need to finish the other search, for the misc. prime of the form (p(a)#)^c * (p(b)#)^d * (n! * x! * k) + 1.
The prime recently found: 59991 * 2^91360 + 1 (27507 digits) |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1218 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
So I managed to download Yves Gallot's program, Proth. I also downloaded PrimeForm (allows more forms of prime to be found). I'm currently searching for primes that are 11998 and 27560 digits in length. My personal record is a 13050-digit prime (Generalized Fermat prime, 1534^4096 + 1). The 27560-digit prime is a Proth prime. The 11998-digit prime to be searched for is a misc. prime:
It's of the form: (p(a)#)^c * (p(b)#)^d * (n! * x! * k) + 1, where a = 821, b = 126, c = 4, d = 4, n = 7, x = 11. The 27560-digit prime search, I have been conducting for two days: My exponent range is in between 91360 and 93200, and the range of the coefficient k is in between 10^4 and 10^5, so I'm testing about 165,600,000 candidates. By the time the search is over, I should have 2609 primes, between 27560 and 28114 digits in length, snapping my personal record by a factor of two. Any tips?
Advice: Don't use Proth or the original PrimeForm (assuming you are referring to the precursor to OpenPFGW). Both are really, really old. PFGW and LLR are many times faster than Proth. |
|
|
|
Advice: Don't use Proth or the original PrimeForm (assuming you are referring to the precursor to OpenPFGW). Both are really, really old. PFGW and LLR are many times faster than Proth.
Problem: Confusing setup + Complex syntax. |
|
|
|
I give up.. This program of yours is too confusing to set up.. I set up a text file, it gives me an error message. I try a quick test, it instantly fails. This shall face the wrath of my delete button. *deletes* For newpgen, I tried to locate 90-digit primes, as a test. Does it trial-divide all the way to 10^45? O_O |
|
|
|
Attempted to test something again. Failed + Deleted out of frustration. The old programs will do. |
|
|
|
I give up.. This program of yours is too confusing to set up..
If at first you don't succeed, skydiving is not for you.
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1218 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
PFGW trial divides to 32756 (IIRC). That can be altered by use of the -f switch. If you are using the command line version (instead of WinPFGW) with the -q option, put double quotes around your expression or double up any ^ symbols. For example:
pfgw -q"3*2^1000+1"
or
pfgw -q3*2^^1000+1
Presuming you aren't sieving you have the option of using an ABCD file with PFGW. Read the doc for more info. I strongly suggest that you work your way up from simple expressions to more complex expressions until you understand PFGW better. Trust me, it will be completely worth the effort.
If you continue to run into problems, I and others on the forum will help, but you will need to provide the input and output so that we can guide you. I think that you will eventually be amazed at how powerful PFGW really is. |
|
|
|
Okay: I'm going to set it up, and I'm going to try to test a sample number: I'll choose a proven prime: 2216 * 1296^263 + 1. (You did advise to use simpler expressions.). I'll attempt to use your advice during testing. By the way, the only version that seems to work is WinPFGW. If I enter a number, using the syntax -q<expression>, it always gives the message: "Evaluator failed".Here's the error message:
PFGW Version 3.3.4.20100405.Win_Stable [GWNUM 25.14]
<2216*1296^263+1> - Evaluator failed
Any tips on this? |
|
|
Jay Volunteer tester
 Send message
Joined: 28 Apr 10 Posts: 82 ID: 59636 Credit: 10,419,429 RAC: 0
                  
|
Did you use quotes? Here's what I get.
Command:
./pfgw -q"2216*1296^263+1"
Output:
PFGW Version 3.3.4.20100405.x86_Stable [GWNUM 25.14]
2216*1296^263+1 is 3-PRP! (0.1462s+0.0003s)
Edit: I think I see the problem. Don't actually use the "<" and ">".
____________
|
|
|
|
Alright.. I'll try that: Ah. I get the idea. The expression needs to be typed right next to the -q. Thanks for the help, all. Now, to test a few numbers at a time? It says I need to make a file that has all the numbers to be tested within it. Update: Like PrimeForm, it has a bunch of settings including what tests to use, what expressions to be evaluated, etc. Also, is there a limit to the amount of changing variables that can be used in an expression once you manage to mess with the settings? Here's what I mean: In both Proth and PrimeForm, you can only select how much the variables n and k vary, or, assign them a range. Can you assign a range to more than two variables? Does a text file have to be made for this to occur? Also: Would it be recommended to use the N-1 or N+1 tests using the forms of prime I am seeking? (k * 2^n + 1, and (k * p(n)#^x + 1), for improved speed? Or should I stick with PRP?
Also.. "helper.txt"?
For the multiple number file: Or, "input.txt", I made it. When I enter it as a command, it gives an error message that reads: "Cannot open file input.txt"
|
|
|
Jay Volunteer tester
 Send message
Joined: 28 Apr 10 Posts: 82 ID: 59636 Credit: 10,419,429 RAC: 0
                  
|
I'm pretty new to this stuff, but I'll do my best to answer what I can.
-I don't think you can set it to test ranges. You can give it an input file that has one number to test per line.
-I would guess that it would be better to use the PRP tests, then go back and check any that come back as PRP with the appropriate flags.
-If you show me exactly what command you're using, I can help you figure out why your input.txt isn't working.
____________
|
|
|
|
Hmm.. You can't get it to test a range.. So I have to manually list all candidates myself. Using an advanced text editor, this will be relatively simple. I guess a few extra seconds to a minute of work beforehand isn't too much work. Concerning the prime tests to use: I'll set up an experiment to see whether N-1 or PRP works faster. The command I use? I simply use the filename itself. To get to work on setting up my ranges:
k * p(n)#^x + 1, where k is between.. 6250 and 31250; n is between 250 and 1250; x is between 1 and 625. The digit range: 4382 to 2738750. |
|
|
Jay Volunteer tester
 Send message
Joined: 28 Apr 10 Posts: 82 ID: 59636 Credit: 10,419,429 RAC: 0
                  
|
I can generate that for you pretty quickly with a php script if you want, but I'm pretty sure it will be quite big...
Edit: By my estimations, if I'm understanding what you want correctly, the file would be about 284 gigabytes. Probably a bit too big.
____________
|
|
|
|
284 GB?!? How would that ever sum to 284 GB? It's testing 15.625 billion candidates in total. 15.625 billion would sum to.. only about 10-20 GB, if I remember correctly. Although I do not have any text editor willing to store 20 GB of digits. (Update: Assuming 8 bits/digit, 15625000000 digits would sum to 125000000000 bits. 125000000000 bits = 15625000000 bytes, assuming 8 bits = 1 byte. 1024 bytes = 1 KB, so 15258789.0625 KB, and 1024 KB = 1 MB, That would be 14901.1611 MB, and 1024 MB = 1 GB, so that would be 14.55191 GB, assuming only one character per line. Multiply the figure by about 14 (The average amount of characters in my ranges, that would be 203.7268 GB. |
|
|
Jay Volunteer tester
 Send message
Joined: 28 Apr 10 Posts: 82 ID: 59636 Credit: 10,419,429 RAC: 0
                  
|
284 gigabytes / 15.625 billion lines would be ~19.5 bytes per line. Seems pretty close.
That aside, even if each test takes only a second (and some will take much, much longer), you're still looking at about 500 cpu years of work.
____________
|
|
|
|
Woah. I didn't notice your post. And, was I correct in assuming 1 digit occupies 8 bits? |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1218 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
You can use an ABC2 file to handle well-defined ranges in a few lines. Read the accompanying documentation. I think that this: k * p(n)#^x + 1, where k is between.. 6250 and 31250; n is between 250 and 1250; x is between 1 and 625. would be coded as this:
ABC2 $a*p($b)#^$c+1
a: from 6250 to 31250
b: from 250 to 1250
c: from 1 to 625
Do a PRP test first. It is always faster than a primality test. PFGW can proof primality for numbers of the a*b^c+/-1 form, primorials, factorials, and a few other simple forms. For (p(a)#)^c * (p(b)#)^d * (n! * x! * k) + 1, I doubt that you will be able to prove primality, but it might be possible if you have a helper file with factors. You need to factor about 33% of the number, e.g. factors that can account for 100 digits of a 300 digit number.
A couple of other recommendations I have are to use the -f switch. It will help you find small factors of the input numbers which saves you the time of doing the PRP test. It would undoubtably be faster if a sieve could be written. Depending upon how well the sieve removes candidates, you might be able to eliminate over 90% of the numbers from consideration for PRP testing. |
|
|
|
A question about NewPGen... where is it that you can find the output file it generates after sieving is finished?
It gives the message: "Output file '<filename>.txt' generated, contains <n>k's"
I then proceed to search for the file, and.. find that it does not exist. It's basically saving the results onto a file that does not exist. This must be fixed.
|
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1218 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
A question about NewPGen... where is it that you can find the output file it generates after sieving is finished?
It gives the message: "Output file '<filename>.txt' generated, contains <n>k's"
I then proceed to search for the file, and.. It doesn't exist! LOL!
I haven't used NewPGen in a long time. I prefer srsieve and sr2sieve instead. You won't be able to use those for the form you are searching those. |
|
|
|
It's in the directory where you put the executable.
Did you put a name in the field for the output file?
I did a NewPGen run a few days ago and that's where it was located.
General form of the output file was:
866831026:M:0:60924526:2
27 155071
30 155071
44 155071
54 155071
134 155071
144 155071
149 155071
165 155071
168 155071
183 155071
195 155071
Interesting discussion.
____________
|
|
|
|
Of course I did. I named it workA.txt.Update: Got the pesky text file. Thanks for the help, all. All I need to do is make in an input in LLR, correct? Update 2: Got LLR working on the candidates that were sieved up to 16 billion. By the way, for sieving: Does it perform either:
1. Ex: Sieve up to 11 --> Eliminate multiples of 2, 3, 5, 7, 11
2. Eliminate only multiples of 11.
Also: Prime found! 9731 * 1296^2600 + 1 (Approx. 8097 digits) + Generalized Proth prime.
Another: 12472 * 1296^2600 + 1 (Approx. 8098 digits)
Also: On the search for a new personal record, Range: 83641 or 83642 decimal digits, breaking the previous personal record by a factor of three. Sieving up to 256B. So far, only 7.3% of the candidates remain. Also, if I do find an 83641-digit prime, it's going to be a prime-numbered amount of digits in length. Tips?
|
|
|
|
Update: The odds of a number in the ranges I selected of being prime is only 19.33% (After sieving for up to about 2 to 4 * 10^10). Must update the ranges, unless sieving actually improves probability. |
|
|
|
Update: I sieved up to 256B, and it turned out to be insufficient. Based on LLR taking nearly 5 minutes to test an 83641-digit number, it would take 4 months to finish testing. And, who has that kind of time? I certainly don't. Sieving raised to 1.6 * 10^13. |
|
|
|
The Prime Pages' article for the applet NewPGen makes the following suggestion:
This program, NewPGen, performs this type of sieving. NewPGen should be used to throw out candidate k's until the rate at which it is removing them exceeds the rate at which Proth.exe can perform a power test. At that point Proth.exe should be used to complete the search, with PMax=0 (as trial factoring has already been performed by NewPGen).
I guessed that the candidates to be tested would be the file that NewPGen generates after sieving. If so, where should the file be located in order for the Proth app to recognize the file and perform power tests? I crated a new directory and stored the Proth app in that directory, in case the file and Proth need a similar or identical directory path. It seems that it cannot open the file. Any tips regarding this? |
|
|
rogueVolunteer developer
 Send message
Joined: 8 Sep 07 Posts: 1218 ID: 12001 Credit: 18,565,548 RAC: 0
 
|
Again, use PFGW. You are wasting your time with Proth. Take the output file from NewPGen and pass as the lone parameter to PFGW. It can read NewPGen formatted files. |
|
|
|
Hmm..
Again, use PFGW. You are wasting your time with Proth. Take the output file from NewPGen and pass as the lone parameter to PFGW. It can read NewPGen formatted files.
I have tried this.. But it turns out LLR is many times faster. Albeit for the numbers I am looking for, it seems as if it takes approximately 5 minutes to test for each number. Anyway, this is a big reason why I am continually sieving. To reduce the time needed for the tests. 4 months is an unacceptable timeframe. And, it turns out I can't improve that timeframe by much. Since NewPGen employs progressive trial division for its sieving mechanism, it would take trial division to about 10^41820, which would take about 10^41750 to 10^41800 years to finish off completely. (And that is an estimate that is at least 10 orders of magnitude too generous.) Since a reasonable timeframe can't be reached, stopping now, going to see how long it takes to test.. 116 days. |
|
|