mersenneforum.org  

Go Back   mersenneforum.org > Prime Search Projects > Conjectures 'R Us

Reply
 
Thread Tools
Old 2009-11-23, 22:11   #34
Siemelink
 
Siemelink's Avatar
 
Jan 2006
Hungary

22×67 Posts
Default

Quote:
Originally Posted by Dougal View Post
i was thinking about starting a new base,and i found that riesel base 129 has a conjectured smallest riesel k of 14.i though it would be very easy to prove and it would give me an idea of what im doing.so i start with this

Code:
IF (k % 5 == 1)  THEN GOTO next_k
IF (k % 7 == 1)  THEN GOTO next_k
what do i need to change in this script?
Hi Dougal,

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.
Attached Files
File Type: txt Rieselator.txt (2.4 KB, 146 views)
Siemelink is offline   Reply With Quote
Old 2009-11-23, 22:35   #35
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

24×593 Posts
Default

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?
Batalov is offline   Reply With Quote
Old 2009-11-23, 23:00   #36
Siemelink
 
Siemelink's Avatar
 
Jan 2006
Hungary

26810 Posts
Default

Quote:
Originally Posted by Batalov View Post
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?
For the Riesel part: absolutely correct.
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.
Siemelink is offline   Reply With Quote
Old 2009-11-24, 15:53   #37
KEP
Quasi Admin Thing
 
KEP's Avatar
 
May 2005

17068 Posts
Default

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
KEP is offline   Reply With Quote
Old 2009-11-25, 18:19   #38
Dougal
 
Dougal's Avatar
 
Jan 2009
Ireland

101110102 Posts
Default

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?
Dougal is offline   Reply With Quote
Old 2009-11-25, 19:03   #39
KEP
Quasi Admin Thing
 
KEP's Avatar
 
May 2005

2·3·7·23 Posts
Default

Quote:
Originally Posted by Dougal View Post
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?
The reason is that you just havent found a prime for it yet. It will most likely not yield a prime for maybe quite some time, since it is a very low weight k, with <1 % of the initial candidates at sieve depth p=0 remaining at p=1G. So with paitence and a gigantic sieving, maybe of a higher n-value of 10 or 100M, you will maybe eventually find a prime for this base. But remember many bases that has 1 k remaining at n=25K also has 1 k remaining at n=100K or higher 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
KEP is offline   Reply With Quote
Old 2009-11-25, 19:07   #40
Dougal
 
Dougal's Avatar
 
Jan 2009
Ireland

2·3·31 Posts
Default

thanks for clearing that up.
Dougal is offline   Reply With Quote
Old 2009-11-25, 19:33   #41
Siemelink
 
Siemelink's Avatar
 
Jan 2006
Hungary

10C16 Posts
Default

Quote:
Originally Posted by Dougal View Post
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?
You spotted it well, there is a reason for this. The tip off is that k = 4 and 4 is a square.
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.
Siemelink is offline   Reply With Quote
Old 2009-11-25, 19:41   #42
Dougal
 
Dougal's Avatar
 
Jan 2009
Ireland

2728 Posts
Default

so this base is proven,or not?

Last fiddled with by Dougal on 2009-11-25 at 19:59 Reason: grammar
Dougal is offline   Reply With Quote
Old 2009-11-25, 20:42   #43
Siemelink
 
Siemelink's Avatar
 
Jan 2006
Hungary

10C16 Posts
Default

Quote:
Originally Posted by Dougal View Post
so this base is proven,or not?
Indeed it is, congratulations.

Willem.
Siemelink is offline   Reply With Quote
Old 2009-11-27, 09:34   #44
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

101×103 Posts
Default

Quote:
Originally Posted by Dougal View Post
so this base is proven,or not?
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
gd_barnes is online now   Reply With Quote
Reply

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

All times are UTC. The time now is 09:40.


Tue Jul 27 09:40:05 UTC 2021 up 4 days, 4:09, 0 users, load averages: 2.06, 1.97, 1.88

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.