mersenneforum.org  

Go Back   mersenneforum.org > Prime Search Projects > No Prime Left Behind

Reply
 
Thread Tools
Old 2010-10-30, 20:52   #12
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

36·13 Posts
Default

And here's where you wanted to stop
5*3^214250+2 (102224 digits)
Glad to help!
Batalov is offline   Reply With Quote
Old 2010-10-30, 23:48   #13
spkarra
 
"Sastry Karra"
Jul 2009
Bridgewater, NJ (USA)

33 Posts
Default

I uploaded the file that contains the results that I got from my Java code. I would be glad if it gets cross-checked.
Just export into MS-EXCEL 2003 or higher version - use ";" and "tab" as the delimiters. The numbers are very big so make sure that the columns are WRAP-TEXT.
Attached Files
File Type: txt MY532_Grid_1_9999_Results.txt (83.4 KB, 102 views)

Last fiddled with by spkarra on 2010-10-30 at 23:51 Reason: more information
spkarra is offline   Reply With Quote
Old 2010-10-31, 01:31   #14
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

947710 Posts
Default

Plus and Minus OEIS series.

AUTHOR Robert G. Wilson v, Dec 26 2000
Batalov is offline   Reply With Quote
Old 2010-10-31, 16:15   #15
spkarra
 
"Sastry Karra"
Jul 2009
Bridgewater, NJ (USA)

33 Posts
Default

Thanks Batalov.

So, the additional ones that I had are:

5*3^5124 Minus 2 ; Length ; 2446
5*3^5750 Minus 2 ; Length ; 2745
5*3^7616 Minus 2 ; Length ; 3635


5*3^7702 Plus 2 ; Length ; 3676
5*3^8823 Plus 2 ; Length ; 4211

Just FYI....I haven't found anything as of now..I am testing with n=10053.
spkarra is offline   Reply With Quote
Old 2010-10-31, 18:10   #16
kar_bon
 
kar_bon's Avatar
 
Mar 2006
Germany

23·3·112 Posts
Default

Quote:
Originally Posted by spkarra View Post
Thanks Batalov.

So, the additional ones that I had are:
But you also missed two on the -1-side: n=2719, 3298.
kar_bon is offline   Reply With Quote
Old 2010-10-31, 20:26   #17
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

36·13 Posts
Default

Quote:
Originally Posted by kar_bon View Post
But you also missed two on the -1-side: n=2719, 3298.
I actually submitted extensions to OEIS (up to n<=35000), and only now noticed that, indeed, these two are simply wrong in the sequence:
5*3^2719-2 has factors: 13
5*3^3298-2 has factors: 13

P.S. The minus sequence has no primes from 11328<n<=50000 ! I am running it to 100000. The large PRP for the plus side is shown earlier in this thread.

-S
Batalov is offline   Reply With Quote
Old 2010-10-31, 22:07   #18
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

36·13 Posts
Default

Ok, there it is; the gap was not endless.
The next "minus 2" PRP is
5*3^54287-2 (25903 digits)
Batalov is offline   Reply With Quote
Old 2010-11-01, 01:02   #19
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

33·5·7·11 Posts
Default

Quote:
Originally Posted by kar_bon View Post
But you also missed two on the -1-side: n=2719, 3298.
Serge is correct about n=2719 & 3298. After a bit of analysis to determine where these exponents would make a comparable form prime:

2*3^2719-5 is prime
2*3^3298-5 is prime

2*3^n-5 is the only form like k*b^n-/+c where k, b, & c are all <=10 that makes the form prime for n=2719 and 3298.

Karsten, as you probably know, we're testing 5*3^n-/+2 as opposed to 2*3^n-/+5.

Last fiddled with by gd_barnes on 2010-11-01 at 01:03
gd_barnes is online now   Reply With Quote
Old 2010-11-01, 01:16   #20
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

36×13 Posts
Default

Gary, Karsten was merely pointing to the errors in OIES (at the time quoted), I think.
I think Neil will fix that on Monday. (I have yet another PRP for him, n~=57K, but I decided to stop after two messages. I know that some people hate piece mail. I'll submit the extension later, after this extension gets posted.)
Batalov is offline   Reply With Quote
Old 2010-11-01, 01:25   #21
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

33×5×7×11 Posts
Default

Quote:
Originally Posted by Batalov View Post
Gary, Karsten was merely pointing to the errors in OIES (at the time quoted), I think.
I think Neil will fix that on Monday. (I have yet another PRP for him, n~=57K, but I decided to stop after two messages. I know that some people hate piece mail. I'll submit the extension later, after this extension gets posted.)
OK, thanks. That wasn't very clear by Karsten's response. When he says that two are "missing" and there are actually two extras in the OEIS DB in the form that we are talking about in this thread, he needs to say as much. Obviously he confused you too because you tested the 5*3^n-2 forms and found the factor of 13 for them.

BTW, I deleted my last posting and your response where I was confused to avoid confusing others.

Last fiddled with by gd_barnes on 2010-11-01 at 01:42
gd_barnes is online now   Reply With Quote
Old 2010-11-05, 19:44   #22
spkarra
 
"Sastry Karra"
Jul 2009
Bridgewater, NJ (USA)

33 Posts
Default

Quote:
Originally Posted by Mini-Geek View Post
I don't know of a built-in function IsPrime that proves primality. There's an isProbablePrime under BigInteger, but that's just PRP, not proven. Can you please show us the code (or at least part of it, e.g. a description explaining it) you used to 'prove' these primes.
Java isn't the fastest way to prove these numbers, and the larger ones (unless I'm missing a faster option than ECPP with Primo) will take on the order of hours to days to prove.
I used BigInteger.IsProbablePrime(int certainity). To baseline my tests, I ran with the know Primes.

For Mersenne Prime 2^9941 - 1 (2993 digits long) the above Java Function took 2mins 47 secs.
For 2^11213-1 (3376) it took 4mins.
For 2^21701 - 1(6533) it took 29 mins 28 secs.
For 2^44497 - 1 (13395), NOTHING resulted even after running for 2 hrs.

That means, with the computing capacity that I have, I will try to find the 532 Grid upt0 7000 digits long.

As of today, I did upto 4500 digits.
spkarra is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Prime numbers Grid, to test an odd integer on 44 Zarck Math 5 2012-03-06 14:43
Grid of Primes davar55 Puzzles 23 2010-12-12 21:21
Curious Prime Grid dump in secondpass VJS Prime Sierpinski Project 4 2008-08-09 09:15
Grid Max and Min davar55 Puzzles 29 2008-03-07 16:34
Sun Grid pacionet Lounge 2 2006-03-25 21:25

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


Sat Jul 17 10:58:24 UTC 2021 up 50 days, 8:45, 1 user, load averages: 1.05, 1.13, 1.23

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.