![]() |
![]() |
#1 |
Einyen
Dec 2003
Denmark
65728 Posts |
![]()
All primes q>3 can be written on the form q=2*k*p + 1 for some k>0 and some prime p, and many primes q can be written like that in several different ways.
The number of different ways is the number of the distinct prime factors of (q-1)/2. Each distinct prime factor can be the prime p in k*p and then (q-1)/(2*p) is the k value. Not all primes q=2kp+1 is the factor of a Mersenne number with prime exponent p, and those that are a factor, can only be the factor of 1 Mersenne number. To be a factor the prime q (mod 120) must be equal to one of these 16 values: 1 7 17 23 31 41 47 49 71 73 79 89 97 103 113 119 Close to half of all primes satisfies this requirement but not all of those are factors. I was curious how many of those are Mersenne factors. I checked all factors in the GIMPS database < 109, which is all there is < 109 since the smallest factor outside GIMPS range would be roughly 2*109. 2kp+1 with k=1 and p>109. Here is the data, the primes%120 column is the number of primes satisfying the mod 120 requirements. I included the 6 Mersenne primes: M3=7, M5=31, M7=127, M13=8191, M17=131071, M19=524287 in the Mersenne factors column since they are really their own factors. Not surprisingly the ratio of Mersenne factors to primes goes down with size. The percentages are the ratio of Mersenne factors to the primes%120 column. Code:
n Total primes primes%120 Mersenne factors 102 25 11 4 36.36% 103 168 80 20 25.00% 104 1229 603 103 17.08% 105 9592 4783 583 12.19% 106 78498 39221 3842 9.80% 107 664579 332213 26556 7.99% 108 5761455 2880376 196645 6.83% 109 50847534 25422922 1511498 5.95% Last fiddled with by ATH on 2020-10-07 at 14:51 |
![]() |
![]() |
![]() |
#2 |
Jun 2003
43·127 Posts |
![]() |
![]() |
![]() |
![]() |
#3 |
Einyen
Dec 2003
Denmark
2·3·52·23 Posts |
![]()
No, the 16 values (mod 120) are more restrictive.
+/- 1 (mod 8) would give 30 values (mod 120): 1 7 9 15 17 23 25 31 33 39 41 47 49 55 57 63 65 71 73 79 81 87 89 95 97 103 105 111 113 119 Last fiddled with by ATH on 2020-10-07 at 17:47 |
![]() |
![]() |
![]() |
#4 |
"Viliam Furík"
Jul 2018
Martin, Slovakia
2·401 Posts |
![]() |
![]() |
![]() |
![]() |
#5 |
Einyen
Dec 2003
Denmark
D7A16 Posts |
![]()
You are both correct, the extra 14 values are just the trivial composites mod 3 and mod 5. Did not really think about that, I just always used the 16 values (mod 120), but I could have also used +/- 1 (mod 8).
Good thing I posted in Misc. Math thread then. Last fiddled with by ATH on 2020-10-07 at 18:05 |
![]() |
![]() |
![]() |
#6 | |
Aug 2020
1 Posts |
![]() Quote:
|
|
![]() |
![]() |
![]() |
#7 |
Romulan Interpreter
"name field"
Jun 2011
Thailand
24×643 Posts |
![]()
Mod 120 doesn't bring any benefit compared with mod 60. The next values which bring benefits are 420, 4620, etc (what mfaktX use, they are primorials times 2).
The idea is that mersenne factors are 2kp+1 and 1 or 7 mod 8, so if you want to filter out whole classes, then the total number of classes must be multiple of 4 (so 2kp be multiple of 8). That is why we use 4, 12, 60, 420, 4620, etc. classes. There are some posts on this forum where I put some pari/gp TF code with all those number of classes, shown how much faster is one compared with another, etc., and there were more explanations there. Last fiddled with by LaurV on 2020-10-09 at 10:42 |
![]() |
![]() |
![]() |
#8 |
Romulan Interpreter
"name field"
Jun 2011
Thailand
24·643 Posts |
![]()
Here's a starting point (follow links there)
Pari scripts (fun starts in post #32, then see all discussion after, till the parallelization from Hans, post #118, and the end of the topic). |
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
factors of Mersenne numbers | bhelmes | Miscellaneous Math | 8 | 2020-09-14 17:36 |
Possible values for k (in Mersenne factors) | James Heinrich | Math | 127 | 2019-09-23 06:22 |
Distribution of Mersenne Factors | tapion64 | Miscellaneous Math | 21 | 2014-04-18 21:02 |
Known Mersenne factors | CRGreathouse | Math | 5 | 2013-06-14 11:44 |
Factors of Mersenne numbers ? | Fusion_power | Math | 13 | 2003-10-28 20:52 |