mersenneforum.org  

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

Reply
 
Thread Tools
Old 2010-07-05, 19:45   #34
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

24·593 Posts
Default

A rather small composite 3-PRP:
20484176833 = 16261*108^3+1 is 3-PRP!
20484176833 = 84673 * 241921


already in the list

Last fiddled with by Batalov on 2010-07-05 at 20:11
Batalov is offline   Reply With Quote
Old 2010-12-17, 13:47   #35
Mr. P-1
 
Mr. P-1's Avatar
 
Jun 2003

49116 Posts
Default

It was a while ago, but still...

Quote:
Originally Posted by gd_barnes View Post
Here's a question for the PRP/PSP gurus:

Is it possible to have a 3-PRP or "any" PRP for that matter that has more than 2 prime factors? Are there any examples?
Yes, the Carmichael numbers have at least 3 prime factors.

Last fiddled with by Mr. P-1 on 2010-12-17 at 13:47
Mr. P-1 is offline   Reply With Quote
Old 2011-02-14, 20:05   #36
Puzzle-Peter
 
Puzzle-Peter's Avatar
 
Jun 2009

22·32·19 Posts
Default

Code:
878519842*3^7-1 = 1,921,322,894,453  = 266,759*7,202,467     prime at n=64
885176830*3^5-1 =  215,097,969,689    = 101,207*2125,327     prime at n=6
830490286*3^6-1 =  605,427,418,493    = 200,903*3,013,531    prime at n=15

Last fiddled with by Puzzle-Peter on 2011-02-14 at 20:11
Puzzle-Peter is online now   Reply With Quote
Old 2011-02-14, 20:41   #37
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24·397 Posts
Default

Quote:
Originally Posted by Puzzle-Peter View Post
Code:
878519842*3^7-1 = 1,921,322,894,453  = 266,759*7,202,467     prime at n=64
885176830*3^5-1 =  215,097,969,689    = 101,207*2125,327     prime at n=6
830490286*3^6-1 =  605,427,418,493    = 200,903*3,013,531    prime at n=15
Which is why we require primality tests, especially for low n. It might be fixed in gwnum v26.5, but I haven't tested it.
rogue is offline   Reply With Quote
Old 2011-02-14, 23:48   #38
kar_bon
 
kar_bon's Avatar
 
Mar 2006
Germany

32×17×19 Posts
Default

Quote:
Originally Posted by rogue View Post
Which is why we require primality tests, especially for low n. It might be fixed in gwnum v26.5, but I haven't tested it.
LLR V3.8.5 gives:
Code:
878519842 > 3^7, so, only a Strong PRP test is done for 878519842*3^7-1.
878519842*3^7-1 is not prime, although base 3-Fermat PSP!!  Time : 26.113 ms.
885176830 > 3^5, so, only a Strong PRP test is done for 885176830*3^5-1.
885176830*3^5-1 is not prime, although base 3-Fermat PSP!!  Time : 21.233 ms.
830490286 > 3^6, so, only a Strong PRP test is done for 830490286*3^6-1.
830490286*3^6-1 is not prime, although base 3-Fermat PSP!!  Time : 19.651 ms.
kar_bon is offline   Reply With Quote
Old 2011-02-15, 01:10   #39
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

11000110100002 Posts
Default

Quote:
Originally Posted by kar_bon View Post
LLR V3.8.5 gives:
Code:
878519842 > 3^7, so, only a Strong PRP test is done for 878519842*3^7-1.
878519842*3^7-1 is not prime, although base 3-Fermat PSP!!  Time : 26.113 ms.
885176830 > 3^5, so, only a Strong PRP test is done for 885176830*3^5-1.
885176830*3^5-1 is not prime, although base 3-Fermat PSP!!  Time : 21.233 ms.
830490286 > 3^6, so, only a Strong PRP test is done for 830490286*3^6-1.
830490286*3^6-1 is not prime, although base 3-Fermat PSP!!  Time : 19.651 ms.
The issue is still in gwnum v26.5 I've let George know.
rogue is offline   Reply With Quote
Old 2011-02-15, 01:21   #40
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
Here's a question for the PRP/PSP gurus:

Is it possible to have a 3-PRP or "any" PRP for that matter that has more than 2 prime factors? Are there any examples?
See Sloane's A007011 for examples of the 2-PrP variety. The base-3 equivalent, 91, 286, 11011, 341341, ..., isn't there but should still be infinite.
CRGreathouse is offline   Reply With Quote
Old 2011-02-15, 08:59   #41
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

28A316 Posts
Default

Quote:
Originally Posted by rogue View Post
The issue is still in gwnum v26.5 I've let George know.
I'm a little confused. Why is a PRP that is a composite a problem and hence why does it need to be reported to George? It is quite normal that we have a few isolated PRPs such as what Peter has mentioned here that are composites. He is testing millions of k's on base 3 using the PFGW script and so is sure to find a few small composite PRPs. He may be using my recommendation of -f30 to speed up testing somewhat on base 3 to n=25K and so will get more composite PRPs than with -f (or its equivalent -f100). He showed where the k was tested correctly as prime at a higher n than the composite PRP in each case.

In looking at what both Peter and Karsten posted, it appears to me that both PFGW and LLR are acting correctly. Am I missing something?

Last fiddled with by gd_barnes on 2011-02-15 at 09:04
gd_barnes is online now   Reply With Quote
Old 2011-02-15, 13:49   #42
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

24×397 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
I'm a little confused. Why is a PRP that is a composite a problem and hence why does it need to be reported to George? It is quite normal that we have a few isolated PRPs such as what Peter has mentioned here that are composites. He is testing millions of k's on base 3 using the PFGW script and so is sure to find a few small composite PRPs. He may be using my recommendation of -f30 to speed up testing somewhat on base 3 to n=25K and so will get more composite PRPs than with -f (or its equivalent -f100). He showed where the k was tested correctly as prime at a higher n than the composite PRP in each case.

In looking at what both Peter and Karsten posted, it appears to me that both PFGW and LLR are acting correctly. Am I missing something?
I was concerned that gwnum was choosing an FFT size that was too small, which is why I reported it to George, but I just realized this morning that the PRP test for these small numbers is done with GMP, not gwnum, so there isn't much I can do.
rogue is offline   Reply With Quote
Old 2011-02-15, 15:41   #43
Puzzle-Peter
 
Puzzle-Peter's Avatar
 
Jun 2009

22·32·19 Posts
Default

Quote:
Originally Posted by gd_barnes View Post
I'm a little confused. Why is a PRP that is a composite a problem and hence why does it need to be reported to George? It is quite normal that we have a few isolated PRPs such as what Peter has mentioned here that are composites. He is testing millions of k's on base 3 using the PFGW script and so is sure to find a few small composite PRPs. He may be using my recommendation of -f30 to speed up testing somewhat on base 3 to n=25K and so will get more composite PRPs than with -f (or its equivalent -f100). He showed where the k was tested correctly as prime at a higher n than the composite PRP in each case.

In looking at what both Peter and Karsten posted, it appears to me that both PFGW and LLR are acting correctly. Am I missing something?
I used -f100. But the script recorded those in the appropriate file and went on testing these k's until it found a prime. Which is the expected behavior, isn't it?
Puzzle-Peter is online now   Reply With Quote
Old 2011-02-15, 16:22   #44
rogue
 
rogue's Avatar
 
"Mark"
Apr 2003
Between here and the

143208 Posts
Default

Quote:
Originally Posted by Puzzle-Peter View Post
I used -f100. But the script recorded those in the appropriate file and went on testing these k's until it found a prime. Which is the expected behavior, isn't it?
Yes. Note that -f and -f100 are equivalent. These false PRPs probably would have been factored by -f200, but the extra time to factor is probably not worth it. You could try -b5 to change the base for the PRP test. I don't know if that works with a script though.
rogue is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Near- and quasi-repunit PRPs Batalov And now for something completely different 10 2019-09-12 13:31
Very (large) PRPs? PawnProver44 Information & Answers 95 2016-05-20 18:24
OEIS - (2^n-5)/3 - n odd - LLT-like algorithm for finding PRPs T.Rex Miscellaneous Math 10 2015-09-01 18:07
PRPs not prime schickel FactorDB 1 2015-08-03 02:50
Proven PRPs? Random Poster FactorDB 0 2012-07-24 10:53

All times are UTC. The time now is 10:35.


Tue Jul 27 10:35:11 UTC 2021 up 4 days, 5:04, 0 users, load averages: 2.18, 2.02, 1.93

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.