![]() |
![]() |
#1 |
"Καλός"
May 2018
17×19 Posts |
![]()
The Mersenne numbers with prime exponents p > 3 for which p mod 4 = 3 and 2p + 1 is a prime number are known to be composite.
Out of the total of 50,847,534 prime exponents 2 ≤ p ≤ 999,999,937, there are 1,655,600 prime exponents (3.256%) satisfying the aforesaid conditions. Perhaps GIMPS could add notifications that the corresponding Mersenne numbers are known to be composite from elementary number theory. The compressed list of the 1,655,600 prime exponents from 11 to 999,999,191 exceeds the limit of 4 MB. Therefore, a Wolfram code that saves the prime exponents in a file is given below instead. Code:
SetDirectory[NotebookDirectory[]]; fname = NotebookDirectory[] <> "Mp3mod4and2pplus1.dat"; file = File[fname]; If[FileExistsQ[file] == False, OpenWrite[file]; Close[file];]; OpenAppend[file]; Np = PrimePi[999999937]; Pcount = 0; ic = 3; While[ic <= Np, p = Prime[ic]; If[(Mod[p, 4] == 3) && (PrimeQ[2*p + 1] == True), Pcount++; Write[file, p];]; ic++;]; Close[file]; Print[Pcount]; |
![]() |
![]() |
![]() |
#2 |
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
26·103 Posts |
![]()
How many don't already have known factors?
|
![]() |
![]() |
![]() |
#3 |
Mar 2019
11716 Posts |
![]()
More precisely, \(2p + 1\) divides \(M_p\) for the case you described. So all of these Mersenne numbers have known (small) factors, and all of them should be in the database already.
|
![]() |
![]() |
![]() |
#4 |
Einyen
Dec 2003
Denmark
23·3·139 Posts |
![]()
Yes they have the smallest factor 2kp+1 with k=1, so they were found back in ~1996 (or 2008 when the range extended to 1 billion). No "elementary" tricks will improve on a project running for 25-26 years.
GIMPS did have major improvements in the last 3-7 years with Jacobi check, Gerbicz error checking and finally PRP proofs, but they were far from elementary. Last fiddled with by ATH on 2022-04-17 at 22:27 |
![]() |
![]() |
![]() |
#5 |
"Καλός"
May 2018
32310 Posts |
![]()
The information in this thread is provided for completeness and is not concerned with novelty indeed.
Searching for "1655600", two previous posts on the topic can be located, see https://www.mersenneforum.org/showth...600#post300787 and https://www.mersenneforum.org/showth...600#post180704. |
![]() |
![]() |
![]() |
#6 |
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36
3,461 Posts |
![]()
For p == 3 mod 4, 2*p+1 (if it is prime) always divides 2^p-1 (this is even true if p itself is not prime)
There should be conditions that 4*p+1, 6*p+1, 8*p+1, etc. always divides 2^p-1 You can check the sequence https://oeis.org/A001917, for q == 1, 7 mod 8, A001917(primepi(q)) is even, and for q == 1, 7 mod 8, A001917(primepi(q)) is odd, thus for p == 3 mod 4, A001917(primepi(2*p+1)) is even, and hence 2*p+1 must divide 2^p-1, you can also check that for which prime q, A001917(primepi(q)) is divisible by 3, 4, 5, 6, etc. |
![]() |
![]() |
![]() |
#7 | |
Mar 2021
France
2×3×5 Posts |
![]() Quote:
|
|
![]() |
![]() |
![]() |
#8 |
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36
3,461 Posts |
![]() |
![]() |
![]() |
![]() |
#9 | |
Mar 2021
France
368 Posts |
![]() Quote:
By the way, do you know the condition for example 6*p+1 or 10*p+1 divides 2^p-1 ? I know the condition for 2*p+1 but I have no idea for these two for example. |
|
![]() |
![]() |
![]() |
#10 | |
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36
3,461 Posts |
![]() Quote:
|
|
![]() |
![]() |
![]() |
#11 | |
Apr 2020
7·107 Posts |
![]() Quote:
First, you use the phrase "cannot be solved" but you don't understand what it means in this context. Over the reals or the complex numbers, it means that we *literally cannot write down the solutions*. But here we're working over a finite field, namely the integers modulo some prime. So even though it isn't easy to find solutions to x^5 = 2, it is certainly possible to write them down if they exist. And secondly, while a general quintic cannot be solved over the complex numbers, the quintic x^5 = 2 most definitely can! Conditions for 2 to be a quintic residue mod p do exist although they are not convenient to use. This can be done for higher order roots too but the conditions will get even worse. |
|
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Repeating residues in LL tests of composite Mersenne numbers | Viliam Furik | Number Theory Discussion Group | 22 | 2020-12-08 14:45 |
Mersenne number with exponent 333333367 is composite | TheGuardian | GPU Computing | 25 | 2019-05-09 21:53 |
Factoring composite Mersenne numbers using Pollard Rho | jshort | Factoring | 9 | 2019-04-09 16:34 |
2 holes in bizarre theorem about composite Mersenne Numbers | wildrabbitt | Math | 120 | 2016-09-29 21:52 |
Factoring highly composite Mersenne numbers | philmoore | Factoring | 21 | 2004-11-18 20:00 |