![]() |
![]() |
#56 |
May 2008
Wilmington, DE
B2416 Posts |
![]()
Reserving the following bases (all new) to n=25K.
Reisel 729 Sierp 729 The above bases will all be complete in 4 days. I will report them 1 per day so Gary doesn't kill me. Last fiddled with by gd_barnes on 2010-01-18 at 13:56 Reason: remove bases <= 500 |
![]() |
![]() |
![]() |
#57 |
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
2×3×23×31 Posts |
![]()
Primes: (by b then k)
Code:
2*509^1+1 2*524^1+1 3*524^2+1 2*539^7+1 2*554^1+1 3*554^1+1 2*569^29+1 2*584^111+1 3*584^1+1 2*599^13+1 2*614^1+1 3*614^18+1 2*629^1+1 2*644^1+1 3*644^1+1 2*659^1+1 2*674^5+1 3*674^3+1 2*689^3+1 2*704^1+1 3*704^1+1 2*719^1+1 2*734^3+1 3*734^1+1 2*749^1+1 2*764^1189+1 3*764^1+1 2*779^1+1 2*794^3+1 3*794^1+1 2*809^1+1 2*824^7+1 3*824^1+1 2*839^5+1 2*854^1+1 3*854^4+1 2*884^5+1 3*884^3+1 3*914^12+1 2*929^99+1 2*944^1+1 3*944^1+1 2*959^5+1 2*974^1+1 3*974^7+1 2*989^1+1 3*1004^19+1 2*1019^1+1 Code:
2*869^n+1 2*899^n+1 2*914^n+1 2*1004^n+1 Code:
554^4+1 584^2+1 614^256+1 644^2+1 674^2+1 704^2+1 764^2+1 824^1024+1 884^8+1 914^4+1 1004^2+1 Code:
524^n+1 734^n+1 794^n+1 854^n+1 944^n+1 974^n+1 Last fiddled with by gd_barnes on 2010-01-19 at 07:48 Reason: remove bases <= 500 |
![]() |
![]() |
![]() |
#58 |
May 2008
Wilmington, DE
22×23×31 Posts |
![]()
Thanks Tim for the explanation on GFN's.
Are you testing the 4 k's left from your ck=4 post. If not, I have a PRPNET run going for n=2.5K-25K on a bunch of k's and I could add those to it. They were: 2*869^n+1 2*899^n+1 2*914^n+1 2*1004^n+1 Last fiddled with by MyDogBuster on 2009-12-17 at 19:28 |
![]() |
![]() |
![]() |
#59 |
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
2×3×23×31 Posts |
![]()
Nope I wasn't planning on working them, feel free to take those higher. Just be aware that taking such high bases to a large n value is rather slow. The tests grow large very quickly when you add 3 digits with each n! 1004^25K > 2^250K
Last fiddled with by Mini-Geek on 2009-12-17 at 19:53 |
![]() |
![]() |
![]() |
#60 |
"Mark"
Apr 2003
Between here and the
3×2,213 Posts |
![]()
Proven with k=8:
primes: 2*1022^727+1 3*1022^1+1 4*1022^6+1 5*1022^5+1 6*1022^1+1 7*1022^36+1 Let me know if I'm missing anything. |
![]() |
![]() |
![]() |
#61 |
Just call me Henry
"David"
Sep 2007
Liverpool (GMT/BST)
2·5·599 Posts |
![]()
reserving riesel base 589
it is currently at ~3k with 8 ks remaining i will post details when i have taken it as far as i can Last fiddled with by henryzz on 2009-12-19 at 19:47 |
![]() |
![]() |
![]() |
#62 |
Just call me Henry
"David"
Sep 2007
Liverpool (GMT/BST)
2×5×599 Posts |
![]()
it seems riesel base 589 is a slightly interesting base
i have found interesting properties about two of the remaining ks 216*589^n-1 216 is 6^3 216*589^(3*n)-1=(6*589^n-1)*(36*589^(2*n)+6*589^n+1) this should mean that i can remove all n that are 0 mod 3 for this k does anyone have any hints on how to do this? 648*589^n-1 648 is 2^3*3^4 i dont think we can learn anything from this but someone may know better edit: i have already removed ks 144 and 324 because they are squares so even ns have algebraic factors and odd ns have a trivial factor of 5 Last fiddled with by henryzz on 2009-12-19 at 20:57 |
![]() |
![]() |
![]() |
#63 | |
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
2×3×23×31 Posts |
![]() Quote:
Here's what I'd probably do: load the sieved file into a spreadsheet program, add a column next to each one that is equal to n mod 3, sort by that column, delete all rows that are 0, and then resave it back with everything how it was. (OpenOffice.org Calc's Text to Columns and advanced settings for saving as a .csv would be very helpful here) Or you could make a Perl script to do it. Last fiddled with by Mini-Geek on 2009-12-19 at 22:19 |
|
![]() |
![]() |
![]() |
#64 |
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
2·3·23·31 Posts |
![]()
Like this one:
![]() Code:
#!/usr/bin/perl #usage: file k a b #e.g. 'mod 589 216 0 3' looks in 589.txt, removes values with k=216 and n=0 mod 3, and writes to 589-out.txt open(IN, $ARGV[0].'.txt'); open(OUT, '>' .$ARGV[0].'-out.txt'); $k = $ARGV[1]; $a = $ARGV[2]; $b = $ARGV[3]; $removecount = 0; while(<IN>) { $line = $_; chomp($line); @linearray = split(/ /,$line); $thisk = @linearray[0]; #if this isn't the right k, then we don't want to remove it, so print it out if ($thisk != $k) { print OUT $line."\n"; next; } $thisn = @linearray[1]; #if there is nothing after a space on this line (usually the first line of a NewPGen-format file), then we don't want to remove it, so print it out if ($thisn == '') { print OUT $line."\n"; next; } $thisa = $thisn % $b; #if the modular value isn't right, then we don't want to remove it, so print it out if ($thisa != $a) { print OUT $line."\n"; next; } #if we've got here, then everything matches, and we remove it by not doing anything, we also increment a counter so we can see how many were removed $removecount++; } print "removed $removecount line(s)"; close(IN); close(OUT); Last fiddled with by Mini-Geek on 2009-12-19 at 23:00 |
![]() |
![]() |
![]() |
#65 | |
May 2007
Kansas; USA
3×19×191 Posts |
![]() Quote:
Ah, I see you happen to have chosen a tricky base. It's what keeps the conjectures interesting. The Sierp side is usually easier with few k's that have algebraic factors. Technically you don't need to worry about testing GFNs. That is correct on removing n==(0 mod 3) for k=216. To generalize your statements, for ANY k that is a perfect square on ANY base, you can remove n==(0 mod 2), that is even n's. For any k that is a perfect cube on any base, you can remove n==(0 mod 3). The same pattern applies to k's that are 5th powers, 7th powers, 11th powers, etc. for any prime power. Those are the k's that have algebraic factors to make a PARTIAL covering set for the k. If the other n's (i.e. odd n's on squared k's) can be eliminated by a "numerical" factor such as 3 or 5, that's when you have a k that has partial algebraic factors to make a FULL covering set, which is what you found with k=144 and 324. As for your squared k's being removed, that is correct and see the algebraic factors thread. Any Riesel base that is b==(4 mod 5) will have SOME squared k's (not all) where even n's have algebraic factors and odd n's where there is a factor of 5. It's only the squared k's where k=m^2 and m==(2 or 3 mod 5). That is k=2^2, 3^2, 7^2, 8^2, 12^2, 13^2, 17^2, 18^2, etc. Your k=144 and 324 fit that criteria. You didn't encounter many of the others listed here because they were eliminated by a trivial factor. As for k=648 remaining, you are correct. Nothing can be inferred from its factorization other than it is a very low weight k that should eventually have a prime. All odd n's have a factor of 59. The even n's have many small factors but not a covering set. The first n-value without a factor < 2000 is at n=22, which has a 21-digit smallest factor. So clearly no covering set there. I also do exactly what Tim does on removing the even n's or the n's that are n==(0 mod 3). Personally, I don't worry about it for n<=10K. It's not worth my personal time. But above that, the CPU time savings is worth it. (caps for emphasis) Gary Last fiddled with by gd_barnes on 2009-12-20 at 00:00 |
|
![]() |
![]() |
![]() |
#66 |
Just call me Henry
"David"
Sep 2007
Liverpool (GMT/BST)
135468 Posts |
![]() |
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Bases 251-500 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 2437 | 2022-06-26 08:45 |
Bases 101-250 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 989 | 2022-06-26 08:35 |
Riesel base 3 reservations/statuses/primes | KEP | Conjectures 'R Us | 1134 | 2022-06-24 20:28 |
Bases 33-100 reservations/statuses/primes | Siemelink | Conjectures 'R Us | 1724 | 2022-06-04 06:20 |
Bases 6-32 reservations/statuses/primes | gd_barnes | Conjectures 'R Us | 1417 | 2022-05-25 19:33 |