![]() |
|
|
#364 |
|
Aug 2006
597910 Posts |
Maybe we need to go in a different direction. sm88, suppose I gave you a prime p which I claimed was a Mersenne exponent. How would you prove that it was composite with your method? Feel free to give Pari code.
|
|
|
|
|
|
#365 | |
|
"Forget I exist"
Jul 2009
Dumbassville
20C016 Posts |
Quote:
1) take (p-3)/2 to be the index to prove 2) use my sieve method (a formula linking this method to a proof for a index would be nice). if it is shown to be eliminated it can't be prime if it isn't it MUST be prime. one thing I found 24(85)+1 = 2047 prime it is found for 23 the bottom prime factor of that number. so this eliminate some amount of checks. Last fiddled with by science_man_88 on 2010-08-03 at 20:25 |
|
|
|
|
|
|
#366 | |
|
Aug 2006
10111010110112 Posts |
Quote:
|
|
|
|
|
|
|
#367 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
Quote:
d | (2^p - 1) <--have no idea what this means well until I found out 24(85)+7 = 2047 and found with 23 I wasn't interested in factoring them at all actually. Last fiddled with by science_man_88 on 2010-08-03 at 20:37 |
|
|
|
|
|
|
#368 | |
|
Aug 2006
3×1,993 Posts |
Quote:
A number d divides 2^p - 1, that is, 2^p - 1 = kd for some integer k. |
|
|
|
|
|
|
#369 | ||
|
May 2010
Prime hunting commission.
24·3·5·7 Posts |
Quote:
Quote:
Last fiddled with by 3.14159 on 2010-08-03 at 20:52 |
||
|
|
|
|
|
#370 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
Quote:
if we find a way to sieve with it like this we can eliminate them like a sieve should without finding a factor though the first appearance of m is likely in the 2^p-1 possible factors which take the form 2kp+1. of course in my idea's case it would hopefully be based on index and the index *2+3 is the prime exponent for the Mersenne prime. Last fiddled with by science_man_88 on 2010-08-03 at 20:55 |
|
|
|
|
|
|
#371 | |
|
Aug 2006
135338 Posts |
Quote:
Yep, it's amazingly inefficient for this purpose, even though we *can* rule out large classes of primes as divisors. |
|
|
|
|
|
|
#372 | ||
|
May 2010
Prime hunting commission.
168010 Posts |
Quote:
Quote:
Last fiddled with by 3.14159 on 2010-08-03 at 20:59 |
||
|
|
|
|
|
#373 |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
Code:
(10:25) gp > for(p=5,30,for(n=1,20,if((6*n*p+p)%24==7 || (6*n*p-p)%24==7,print(floor((6*n*p-p)/24)","p)))) 2,5 7,5 12,5 17,5 22,5 6,7 13,7 20,7 27,7 34,7 2,11 13,11 24,11 35,11 46,11 9,13 22,13 35,13 48,13 61,13 16,17 33,17 50,17 67,17 84,17 8,19 27,19 46,19 65,19 84,19 16,23 39,23 62,23 85,23 108,23 5,25 30,25 55,25 80,25 105,25 13,29 42,29 71,29 100,29 129,29 |
|
|
|
|
|
#374 | ||
|
Aug 2006
135338 Posts |
Quote:
Quote:
Hmm... needs a lot of work. |
||
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Wheel Factorization | a1call | Factoring | 11 | 2017-06-19 14:04 |
| Efficient Test | paulunderwood | Computer Science & Computational Number Theory | 5 | 2017-06-09 14:02 |
| LL tests more credit-efficient than P-1? | ixfd64 | Software | 3 | 2011-02-20 16:24 |
| A Wheel | storm5510 | Puzzles | 7 | 2010-06-25 10:29 |
| Most efficient way to LL | hj47 | Software | 11 | 2009-01-29 00:45 |