![]() |
|
|
#12 | |
|
"Forget I exist"
Jul 2009
Dumbassville
20C016 Posts |
Quote:
|
|
|
|
|
|
|
#13 |
|
May 2007
Kansas; USA
1040310 Posts |
SM88, please stop responding to yourself. It's annoying. Take your time, figure everything out ahead of time, and then make one post.
I don't know if this will help you any but for the n=32768/32767 challenge, for both sides to be prime, for n=32768, the condition k==(17, 29, or 53 mod 60) had to be true. What that condition did was eliminate all factors of 2, 3, and 5 from both n=32767 and 32768. That was the starting point that I used for sieving n=32768. For sieving n=65536, although the modulos will be different, the idea will be the same. |
|
|
|
|
|
#14 | |
|
"Forget I exist"
Jul 2009
Dumbassville
838410 Posts |
Quote:
|
|
|
|
|
|
|
#15 |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
24×593 Posts |
|
|
|
|
|
|
#16 |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
24×593 Posts |
For an estimate how large the k16 might be, here's the first PRP from 65536 side after the 2-side sieve (but not the other): 2^65536-2723249.
So, that's one PRP down, with a few thousand more to find and test on the other side until both are PRPs. P.S. oh, here came another: 2^65536-2912969... Last fiddled with by Batalov on 2011-10-27 at 02:42 Reason: (clarification that this after the 2-side sieve) |
|
|
|
|
|
#17 | |
|
May 2007
Kansas; USA
101×103 Posts |
Quote:
1. The tests take 4 times as long. 2. Half as much chance of n=65536 (vs. n=32768) being prime so twice as many tests. 3. Half as much chance of n=65535 (vs. n=32767) being prime so twice as many tests. 4x2x2=16 times as long and 4 times the k-range. So you can assume that it would take 64-96 CPU weeks or 1-2 CPU years with current sieving/testing technology to find an n=65536 safe prime using srsieve/PFGW like I did. To have a 75-80% chance of safe prime at n=65536, you would want to sieve all k<~5G. The key is for someone to come up with a better sieving program. P=50M was the approximate and very low optimum sieving limit for n=32768 because srsieve has to handle each k as a separate sequence for a single n and so is very slow. As a general rule, it can only effectively sieve ~100,000 sequences reasonably efficiently. Beyond that and it loses a lot of efficiency. Personally I had to start out sieving in k=2M groups starting with all k==(17, 29 or 53 mod 60). 3 out of every 60 k's meant 100,000 k's in each k=2M group. I had to do that 600 times for the entire k<=1.2G range, i.e. 2M*600=1.2G. Once I had the # of sequences reduced after sieving the first go around, I could then sieve the other side in 120 k=10M groups. (Actually there were more sieving steps than that to increase CPU sieving efficiency but they are a moot point for this explanation. Also, this is definitely the limit of manual effort that anyone would want to do for such an excercise. It is very impractical for n=65536; requiring 4 times the # of sieving groups.) Gary Last fiddled with by gd_barnes on 2011-10-27 at 03:13 |
|
|
|
|
|
|
#18 | |
|
May 2007
Kansas; USA
101·103 Posts |
Quote:
|
|
|
|
|
|
|
#19 |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
24×593 Posts |
Usually, yes (unlike UTM Primes). With a clear note that they are PRP.
|
|
|
|
|
|
#20 |
|
May 2007
Kansas; USA
101×103 Posts |
|
|
|
|
|
|
#21 |
|
"William"
May 2003
New Haven
2×7×132 Posts |
|
|
|
|
|
|
#22 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
24×593 Posts |
Quote:
Code:
# gp -p 80000000
write("kcan","ABC 2^65536-$a")
forstep(k=17,99999999,12, \
if(k%60==17||k%60==29||k%60==53, \
m=1;forprime(p=7,80000000,if(lift(Mod(2,p)^65536-k)<2,m=0;break)); \
if(m>0,write("kcan",k))) \
)
Last fiddled with by Batalov on 2011-10-27 at 18:41 Reason: bootification |
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sieving for CRUS | rebirther | Conjectures 'R Us | 638 | 2021-06-15 07:55 |
| Sieving Drive all base 2/4 k's worked by CRUS | gd_barnes | Conjectures 'R Us | 143 | 2014-10-21 23:55 |
| Some CRUS stats | vmod | Conjectures 'R Us | 213 | 2014-02-28 21:23 |
| What are your CRUS plans? | rogue | Conjectures 'R Us | 35 | 2013-11-09 09:03 |
| how high will CRUS go | Mini-Geek | Conjectures 'R Us | 1 | 2010-11-08 20:50 |