![]() |
|
|
#34 | |
|
Jan 2006
Hungary
22·67 Posts |
Quote:
you should delete these two lines. These were there because the previous base. I've attached the same script with full notes, adapted for your base. Good luck! Willem. |
|
|
|
|
|
|
#35 |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
100101000100002 Posts |
First thing, we factor base-1; for 129, 128=2^7. But note that 2's are already built into the script. So we remove (or comment out) those lines.
E.g. for R161, 160=2^5*5, again 2's are taken care of, so the line IF (k % 5 == 1) THEN GOTO next_k is the line to use. For R88, 87=3*29, then we modify the lines into IF (k % 3 == 1) THEN GOTO next_k IF (k % 29 == 1) THEN GOTO next_k I.e. for every prime factor p of b-1, we use the line IF (k % p == 1) THEN GOTO next_k For Sierp script, replace -1 things into +1 and the skip conditions should be of form IF (k % p == (p-1)) THEN GOTO next_k Did I get this right? |
|
|
|
|
|
#36 | |
|
Jan 2006
Hungary
22×67 Posts |
Quote:
For the Sierpinsky: don't ask me, I don't know first thing about those! Willem. PS ok, ok, I'll adapt my script to include Sierpinsky if it so easy. |
|
|
|
|
|
|
#37 |
|
Quasi Admin Thing
May 2005
2×3×7×23 Posts |
Well guys the system about trivial factors is the same, no matter if we are talking Riesel or Sierpinski numbers. All primefactors of b-1 (both on the Riesel and Sierpinski bases), tells us which numbers of k has trivial factors. Example given:
Riesel base 128, has b-1=127 (127 is a prime, so no further factors), which means that for all k mod 127 = 1 (128, 255, 383 etc.) there is trivial factors for all n's. Sierpinski base 128, has b-1=127 (127 is a prime, so no further factors), which means taht for all k mod 127 = 126 (126, 253, 381 etc.) there is trivial factors for all n's. A final note, on the Riesel side, for some reason that I'm not aware of, k=1 is always excluded from any testings. However this is not the case on the Sierpinski side. Hope this helped ![]() Regards KEP |
|
|
|
|
|
#38 |
|
Jan 2009
Ireland
2·3·31 Posts |
ok,so i started riesel base 129,i found primes for all k up to the conjectured lowest riesel k (14) apart from k=4.all were k eliminated long before n=1000,but k=4 still stands at n=20000,is there a reason for this,or have i just not found a prime for it yet?
|
|
|
|
|
|
#39 | |
|
Quasi Admin Thing
May 2005
3C616 Posts |
Quote:
Chances is of course always that you missed the prime, however if your computer can pass a Prime95 torture test, this is most likely not the case ![]() KEP |
|
|
|
|
|
|
#40 |
|
Jan 2009
Ireland
2·3·31 Posts |
thanks for clearing that up.
|
|
|
|
|
|
#41 | |
|
Jan 2006
Hungary
22×67 Posts |
Quote:
All entries with an odd exponent have a factor 5. For all entries with an even exponent n = 2m the following holds: 4*129^2m-1 = 2^2*129^2m-1 = (2*129^m)^2-1 = (2*129^m+1)(2*129^m-1). So there is always a factor for k = 4. Willem. |
|
|
|
|
|
|
#42 |
|
Jan 2009
Ireland
2×3×31 Posts |
so this base is proven,or not?
Last fiddled with by Dougal on 2009-11-25 at 19:59 Reason: grammar |
|
|
|
|
|
#43 |
|
Jan 2006
Hungary
4148 Posts |
|
|
|
|
|
|
#44 |
|
May 2007
Kansas; USA
101×103 Posts |
Hi Dougal,
I know it sounds a little confusing but by (bad) luck, you happened to encounter a base that has a k that contains partial algebraic factors that make a full covering set to eliminate the k. I know that probably sounds a little confusing but it means that the k is proven composite for all n-values and so is not considered. If you want to get into the math behind how and why this happens, see http://www.mersenneforum.org/showthread.php?t=11143. Gary Last fiddled with by gd_barnes on 2009-11-27 at 09:54 |
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Starting mprime at boot | daxmick | PrimeNet | 18 | 2019-03-17 01:12 |
| Issues With Starting CUDALucas | Smokingenius | GPU Computing | 8 | 2015-11-13 17:46 |
| mfaktc not starting in Mac OSX | bayanne | GPU Computing | 0 | 2014-05-10 14:38 |
| Disk starting to go | Chuck | Hardware | 8 | 2013-05-20 06:40 |
| mprime starting | spaz | Software | 9 | 2009-05-03 06:41 |