![]() |
|
|
#177 | |
|
"Mark"
Apr 2003
Between here and the
18D016 Posts |
Quote:
|
|
|
|
|
|
|
#178 | |
|
"Mark"
Apr 2003
Between here and the
24·397 Posts |
Quote:
gawk is a new language for me. I've clearly made a few mistakes in string manipulation. I appreciate that you are looking at the numbers in more detail. |
|
|
|
|
|
|
#179 |
|
"Mark"
Apr 2003
Between here and the
143208 Posts |
Below is the output from srsieve for the various base 2 conjectures. The first three are Riesel, the remaining four are Sierpinski. The "n per 25000" on the webpage is the number of terms here multiplied by 1.25. Note that most of the remaining k have a very light weight.
Code:
srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 57 base 2 sequences into 89 base 2^24 subsequences. Sieving 3 <= p <= 1000000 eliminated 565597 terms, 4403 remain. Wrote 4403 terms for 57 sequences to srsieve format file `srsieve.out'. srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 3 base 2 sequences into 31 base 2^24 subsequences. Sieving 3 <= p <= 1000000 eliminated 27882 terms, 2118 remain. Wrote 2118 terms for 3 sequences to srsieve format file `srsieve.out'. srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 5 base 2 sequences into 44 base 2^24 subsequences. Sieving 3 <= p <= 1000000 eliminated 46031 terms, 3969 remain. Wrote 3969 terms for 5 sequences to srsieve format file `srsieve.out'. srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 6 base 2 sequences into 9 base 2^24 subsequences. Sieving 3 <= p <= 1000000 eliminated 59573 terms, 427 remain. Wrote 427 terms for 6 sequences to srsieve format file `srsieve.out'. srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 2 base 2 sequences into 13 base 2^12 subsequences. Sieving 3 <= p <= 1000000 eliminated 18811 terms, 1189 remain. Wrote 1189 terms for 2 sequences to srsieve format file `srsieve.out'. srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 4 base 2 sequences into 20 base 2^12 subsequences. Sieving 3 <= p <= 1000000 eliminated 37485 terms, 2515 remain. Wrote 2515 terms for 4 sequences to srsieve format file `srsieve.out'. srsieve started: 100001 <= n <= 110000, 3 <= p <= 1000000 Split 31 base 2 sequences into 118 base 2^72 subsequences. Sieving 3 <= p <= 1000000 eliminated 307475 terms, 2525 remain. Wrote 2525 terms for 31 sequences to srsieve format file `srsieve.out'. |
|
|
|
|
|
#180 | |
|
May 2007
Kansas; USA
101000101000112 Posts |
Quote:
I just now tested this. There are many odd n remaining in the even n file. Riesel base 2, Sierp base 2, and Sierp base 2 2nd conj (i.e. the "regular" conjectures) are all correct and have an extremely low weight. But...Riesel base 2 even-n, Riesel base 2 odd-n, Sierp base 2 even-n, and Sierp base 2 odd-n are all incorrect. They "appear" to have a high weight when in fact they have a low weight, similar to regular conjectures. Last fiddled with by gd_barnes on 2012-09-27 at 19:41 |
|
|
|
|
|
|
#181 | |
|
May 2007
Kansas; USA
101000101000112 Posts |
Quote:
Riesel and Sierp base 2 even n: Multiply the base by 2 and keep the k's the same and then run srsieve. Base 4 will give the same effect as base 2 even n. Riesel and Sierp base 2 odd n: Multiply the base by 2 and multiply the k's by 2 and then run srsieve. Base 4 with the k's doubled will give the same effect as base 2 odd n. You should end up with some extremely low weight k's, just like the "regular" base 2 conjectures. The way you have it now makes the even n and odd n conjecture k's look very high weight. |
|
|
|
|
|
|
#182 |
|
"Mark"
Apr 2003
Between here and the
11000110100002 Posts |
I see now. It definitely doesn't remove the "even" or "odd" n as needed. I should be able to change the script to do that.
|
|
|
|
|
|
#183 |
|
"Mark"
Apr 2003
Between here and the
635210 Posts |
I have attached the current scripts of which three were updated. The zip file also includes the current difficulties/weights.
One script was updated to fix the problem with S53. I suspect that some other bases might have had a similar issue, although it might not have been as obvious as this one. The other two updated scripts with the even/odd conjectures. I also fixed another very small problem that caused the script to overcount remaining n after sieving. That affects all bases, which is why I've included updated difficulties/weights. I was counting number of k * 2 extra for the values. |
|
|
|
|
|
#184 |
|
May 2007
Kansas; USA
101·103 Posts |
Only one of the 2 problems was fixed and another one was created:
1. The S53 problem is fixed but the problem with R2 even-n, R2 odd-n, S2 even-n, and S2 odd-n still exists; just not quite as bad as before. 2. New problem: The "tested n" column on the top 20 page and the unproven conjecture page has an extra right parenthese ")" after it on many bases. This only seems to happen on bases with <= 25 k's remaining. Below are the n's that you should have remaining for R2 even-n, R2 odd-n, S2 even-n, and S2 odd-n on a sieve to P=1M for n=100001-110000. Keep in mind that you should multiply the base by 2 (i.e. always base 4) before sending to srsieve. Also...for odd-n only, all k's must be multiplied by 2. n's that should be remaining in the difficulty.txt files: R2 even-n (3 k's): 621 R2 odd-n (5 k's): 935 S2 even-n (2 k's): 488 S2 odd-n (4 k's): 513 This should result in "n per 25000 at 1e12" as shown on the web pages of: R2 even-n: 776 R2 odd-n: 1169 S2 even-n: 610 S2 odd-n: 641 To make sure we're on the same page, here are examples of 2 of the files that should be sent to srsieve: R2 even-n: 9519*4^n-1 14361*4^n-1 19401*4^n-1 S2 odd-n: 18534*4^n+1 64494*4^n+1 106266*4^n+1 168726*4^n+1 Gary Last fiddled with by gd_barnes on 2012-09-28 at 05:15 |
|
|
|
|
|
#185 |
|
May 2007
Kansas; USA
101×103 Posts |
I found another problem that I don't think previously existed before all of this started:
On the CRUS statistics and progress page, it is showing 0 bases "not started" in both of the first two tables. This is also distorting the percentages for the various categories. I'm pretty sure this was correct prior to this entire recent exchange but I don't know which of the recent versions of the scripts caused it to become incorrect. |
|
|
|
|
|
#186 | |
|
"Mark"
Apr 2003
Between here and the
24·397 Posts |
Quote:
|
|
|
|
|
|
|
#187 | |
|
"Mark"
Apr 2003
Between here and the
11000110100002 Posts |
Quote:
|
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sieving for CRUS | rebirther | Conjectures 'R Us | 638 | 2021-06-15 07:55 |
| BOINC effort for CRUS | gd_barnes | Conjectures 'R Us | 75 | 2015-06-17 14:25 |
| What are your CRUS plans? | rogue | Conjectures 'R Us | 35 | 2013-11-09 09:03 |
| how high will CRUS go | Mini-Geek | Conjectures 'R Us | 1 | 2010-11-08 20:50 |
| CSVs for stats available + New combined stats | opyrt | Prime Sierpinski Project | 3 | 2010-05-31 08:13 |