mersenneforum.org  

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

Reply
 
Thread Tools
Old 2009-12-19, 13:37   #12
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

101×103 Posts
Default

Here are some notes about the outputs from David's runs:

12775672337441*280^7-1 is prime
367930956102524*280^2-1 is prime
31741813281359*280^1-1 is prime
41294807980463*280^3-1 is prime
179533651185182*280^9-1 is prime
203047772514813*280^14-1 is prime
253971311388192*280^4-1 is prime
371284522956233*280^404-1 is prime
482870640360662*280^10-1 is prime

So those can't have a covering set.

k=106286297574924 was the only one that I couldn't find a prime for (up to n=2500). But since n=2 has a smallest factor of 11229577 and n=7 has a smallest factor 14 digits long, it is unlikely to have a full covering set.
gd_barnes is online now   Reply With Quote
Old 2009-12-19, 13:53   #13
Mini-Geek
Account Deleted
 
Mini-Geek's Avatar
 
"Tim Sorbera"
Aug 2006
San Antonio, TX USA

17×251 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
k=106286297574924 was the only one that I couldn't find a prime for (up to n=2500). But since n=2 has a smallest factor of 11229577 and n=7 has a smallest factor 14 digits long, it is unlikely to have a full covering set.
In any case, the bounds were likely set to 100000, allowing a max prime length of 5, so if it does have a covering set, it wasn't detected properly.
Mini-Geek is offline   Reply With Quote
Old 2009-12-19, 14:51   #14
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

16F916 Posts
Default

Quote:
Originally Posted by Mini-Geek View Post
In any case, the bounds were likely set to 100000, allowing a max prime length of 5, so if it does have a covering set, it wasn't detected properly.
yes the bounds were set to 100k for all my runs
i did notice something weird which i now think was probably due to overflows
if i lowered the max k bound too far it wouldnt find a solution that was still below the max k bound
henryzz is offline   Reply With Quote
Old 2009-12-19, 16:04   #15
R. Gerbicz
 
R. Gerbicz's Avatar
 
"Robert Gerbicz"
Oct 2005
Hungary

148610 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Here are some notes about the outputs from David's runs:

12775672337441*280^7-1 is prime
367930956102524*280^2-1 is prime
31741813281359*280^1-1 is prime
41294807980463*280^3-1 is prime
179533651185182*280^9-1 is prime
203047772514813*280^14-1 is prime
253971311388192*280^4-1 is prime
371284522956233*280^404-1 is prime
482870640360662*280^10-1 is prime

So those can't have a covering set.

k=106286297574924 was the only one that I couldn't find a prime for (up to n=2500). But since n=2 has a smallest factor of 11229577 and n=7 has a smallest factor 14 digits long, it is unlikely to have a full covering set.
In fact you don't need to find primes/divisors to prove that the k value is good or not, the following quick pari code decide this:
Code:
F(k,b,c,period)=if(gcd(k+c,b-1)>1,return(0));\
for(n=1,period,if(gcd(k*b^n+c,b^period-1)==1,return(0)));return(1)
it checks the k*b^n+c sequence for a given period without factorization. For example F(482870640360662,280,-1,144)=0 (false) and F(513613045571841,280,-1,36)=1 (so true)
and F(4,7,-1,1)=0 (false, trivial factor(s)).

Last fiddled with by R. Gerbicz on 2009-12-19 at 16:07
R. Gerbicz is offline   Reply With Quote
Old 2009-12-20, 00:05   #16
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

242438 Posts
Default

Quote:
Originally Posted by R. Gerbicz View Post
I think none of the posted riesel k values for base=280 is good. Or am I wrong?

k=513613045571842 is still good. For such large searches the program can print out bad values, the reason is that when bound_for_k*bound_for_primes is very large, say about 2^60 or so. Here the order of the primes in the covering set is also important, because for the original k value p=78121 is in the covering set, but the code has found this solution. The solution would be to rewrite this in gmp to eliminate all such limitations. (I don't have time for this).

It wouldn't be bad to check all k values for bases<=1024 for both sides. I'm not sure if I've done this.

ps. OK, checked this in gmp, there is no wrong k values in the two files.

Robert (that is your name, correct?), please correct me if I'm wrong here:

To clarify your final statement here: Based on your testing, we definitely know that all of the conjectures given in your listings have covering sets. What we don't know is if all of the conjectures are the smallest.

Is that correct?

If so, can you suggest some parameters that we might use for covering.exe to find smaller conjectures that won't cause problems like what David (henryzz) encountered?


Gary
gd_barnes is online now   Reply With Quote
Old 2009-12-20, 00:14   #17
Mini-Geek
Account Deleted
 
Mini-Geek's Avatar
 
"Tim Sorbera"
Aug 2006
San Antonio, TX USA

17×251 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
...David (henryzz)...
henryzz's name is David?
Mini-Geek is offline   Reply With Quote
Old 2009-12-20, 09:36   #18
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

133718 Posts
Default

Quote:
Originally Posted by Mini-Geek View Post
henryzz's name is David?
yes it is
my parents made me choose something not related to my name when i was young for privacy reasons
recently i have been using the name primeprover for most new accounts as it stops people calling me henry
i dont mind henryzz i am used to that but just henry bugs me
henryzz is offline   Reply With Quote
Old 2009-12-20, 12:09   #19
R. Gerbicz
 
R. Gerbicz's Avatar
 
"Robert Gerbicz"
Oct 2005
Hungary

2·743 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Robert (that is your name, correct?), please correct me if I'm wrong here:

To clarify your final statement here: Based on your testing, we definitely know that all of the conjectures given in your listings have covering sets. What we don't know is if all of the conjectures are the smallest.

Is that correct?
Yes, I'm Robert.
Yes, that's correct, the given covering sets should be valid.
Quote:
Originally Posted by gd_barnes View Post
If so, can you suggest some parameters that we might use for covering.exe to find smaller conjectures that won't cause problems like what David (henryzz) encountered?


Gary
I've checked the code there should be no problem if bound_for_primes*best<2^62 is true. The promising periods are those where it has got many small divisors, like 12,24,144.

Last fiddled with by R. Gerbicz on 2009-12-20 at 12:12
R. Gerbicz is offline   Reply With Quote
Old 2009-12-26, 20:17   #20
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

5,881 Posts
Default

Quote:
Originally Posted by henryzz View Post
yes it is
my parents made me choose something not related to my name when i was young for privacy reasons
recently i have been using the name primeprover for most new accounts as it stops people calling me henry
i dont mind henryzz i am used to that but just henry bugs me
bother xyxxy has read this
look at the writing under my name
henryzz is offline   Reply With Quote
Old 2009-12-27, 13:51   #21
10metreh
 
10metreh's Avatar
 
Nov 2008

1001000100102 Posts
Default

Quote:
Originally Posted by henryzz View Post
bother xyxxy has read this
look at the writing under my name
I think Xyzzy always does that when there is an opportunity to be annoying, but only ever when something in a post hints at that. He could put "Innumerate" under somebody's name, but he's never done it because no-one's ever hinted at it in a post. Although I don't know how Alex got "It rubs the lotion on its skin or else it takes the hose again" (which has since been removed).

Last fiddled with by 10metreh on 2009-12-27 at 13:52
10metreh is offline   Reply With Quote
Old 2009-12-29, 20:18   #22
xilman
Bamboozled!
 
xilman's Avatar
 
"๐’‰บ๐’ŒŒ๐’‡ท๐’†ท๐’€ญ"
May 2003
Down not across

47·229 Posts
Default

Quote:
Originally Posted by 10metreh View Post
I think Xyzzy always does that when there is an opportunity to be annoying, but only ever when something in a post hints at that. He could put "Innumerate" under somebody's name, but he's never done it because no-one's ever hinted at it in a post. Although I don't know how Alex got "It rubs the lotion on its skin or else it takes the hose again" (which has since been removed).
So far, I've got off fairly lightly.

This post is asking for trouble ...

Paul
xilman is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bases 2 & 4 reservations/statuses/primes Jean Pennรฉ Conjectures 'R Us 466 2021-07-25 04:05
Prime finding rate, Sierp vs. Riesel? CGKIII Conjectures 'R Us 27 2012-09-12 23:16
Sieving Riesel & Sierp base 16 gd_barnes Conjectures 'R Us 13 2009-12-14 09:23
Riesel/Sierp #'s for bases 3, 7, and 15 Siemelink Conjectures 'R Us 105 2009-09-04 06:40
Sierpinski/ Riesel bases 6 to 18 robert44444uk Conjectures 'R Us 139 2007-12-17 05:17

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


Tue Jul 27 09:43:39 UTC 2021 up 4 days, 4:12, 0 users, load averages: 2.31, 2.05, 1.92

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.