Significant milestone for the GIMPS project: all tests smaller than the 48th Mersenne Prime, M(57885161), have been verified

M(57885161) was discovered eight and half years ago. Now, thanks to the largely unheralded and dedicated efforts of thousands of GIMPS volunteers, every smaller Mersenne number has been successfully double-checked. Thus, M(57885161) officially becomes the 48th Mersenne prime. This is a significant milestone for the GIMPS project.

https://www.mersenne.org/

πŸ‘︎ 139
πŸ’¬︎
πŸ‘€︎ u/Nunki08
πŸ“…︎ Oct 07 2021
🚨︎ report
I rlly wanna solve some famous unsolved number theory problem like infinite twin primes or mersenne primes thatd be cool but kinda useless :(
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/coolguy985
πŸ“…︎ Dec 04 2021
🚨︎ report
M(57885161) verified as 48th Mersenne Prime mersenne.org/
πŸ‘︎ 14
πŸ’¬︎
πŸ‘€︎ u/qznc_bot2
πŸ“…︎ Oct 10 2021
🚨︎ report
Mathematician and French Catholic Priest known as the father of β€˜Acoustics’. Fr. Marin Mersenne(8 Sept 1588 - 1 Sept1648). He is best known today among mathematicians for Mersenne prime numbers. He also developed Mersenne's laws describes harmonics of a Vibrating string.
πŸ‘︎ 48
πŸ’¬︎
πŸ‘€︎ u/sintovarghese
πŸ“…︎ Sep 25 2021
🚨︎ report
ELI5: How can any prime number be the largest prime number, when any prime*2-1 is also a prime? (The Mersenne Prime Identity) reddit.com/r/explainlikei…
πŸ‘︎ 217
πŸ’¬︎
πŸ‘€︎ u/I_like_rocks_now
πŸ“…︎ Feb 18 2021
🚨︎ report
Mathematician and French Catholic Priest known as the father of β€˜Acoustics’. Fr. Marin Mersenne(8 Sept 1588 - 1 Sept1648). He is best known today among mathematicians for Mersenne prime numbers. He also developed Mersenne's laws describes harmonics of a Vibrating string.
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/sintovarghese
πŸ“…︎ Sep 25 2021
🚨︎ report
My SoME submission: why are mersenne primes and perfect numbers related? youtu.be/a-gLYQr5xnE
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/PolyProductions
πŸ“…︎ Sep 10 2021
🚨︎ report
Mathematician and French Catholic Priest known as the father of β€˜Acoustics’. Fr. Marin Mersenne(8 Sept 1588 - 1 Sept1648). He is best known today among mathematicians for Mersenne prime numbers. He also developed Mersenne's laws describes harmonics of a Vibrating string.
πŸ‘︎ 45
πŸ’¬︎
πŸ‘€︎ u/sintovarghese
πŸ“…︎ Sep 23 2021
🚨︎ report
The Compounding of Mersenne Primes (Geometric, Da Vinci)
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Ereshkigal-
πŸ“…︎ Oct 09 2021
🚨︎ report
My amateur-ish SoME submission: how are mersenne primes related to perfect numbers? youtu.be/a-gLYQr5xnE
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/PolyProductions
πŸ“…︎ Sep 10 2021
🚨︎ report
My summer of math exposition submission: Why are perfect numbers and mersenne primes related? youtu.be/a-gLYQr5xnE
πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/PolyProductions
πŸ“…︎ Sep 10 2021
🚨︎ report
Mathematician and French Catholic Priest known as the father of β€˜Acoustics’. Fr. Marin Mersenne(8 Sept 1588 - 1 Sept1648). He is best known today among mathematicians for Mersenne prime numbers. He also developed Mersenne's laws describes harmonics of a Vibrating string.
πŸ‘︎ 9
πŸ’¬︎
πŸ‘€︎ u/sintovarghese
πŸ“…︎ Sep 25 2021
🚨︎ report
My SoME submission: why are mersenne primes and perfect numbers related? youtu.be/a-gLYQr5xnE
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/PolyProductions
πŸ“…︎ Sep 10 2021
🚨︎ report
A month ago I posted on here about a hash function that uses random matrices and had a great discussion. I took things further and wrote a small article, it gives an application to Mersenne primes!

Link to the article: https://drive.google.com/file/d/1CmdSESs1whAdew6saz5eCrHlLAcqqw96/view?usp=sharing

I'm also putting 100$ (CAD) bounties on each hash function if someone finds a collision! I created the subreddit /r/falkush to share your solution. I'd really like to know what you think about it and if you think this could be published in a small journal. I wrote a Java implementation that you can download here: https://drive.google.com/file/d/1EQDbjunNIW5nhTT5qEkfUddvJgp2mocz/view

Thanks!!

πŸ‘︎ 36
πŸ’¬︎
πŸ‘€︎ u/AcrossTheUniverse
πŸ“…︎ Jun 25 2021
🚨︎ report
How can I make my Mersenne prime calculator more efficient?

As a little fun side project I wrote a very small program that is able to calculate mersenne primes. My current speed is about 26000 ms until M18 (2^3217 - 1) is calculated starting from the first one.

Here is the C# code:

using System;
using System.Numerics;
using System.Diagnostics;
namespace MersenneCalc128
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Mersenne Prime Calculator v3.1 by Thomas\nCalulcates Mersenne Prime of the form Mn = 2ⁿ - 1\nUses the Lucas–Lehmer primality test\n\n[PRESS ENTER TO START]\n");
            Console.ReadKey();
            BigInteger number = new BigInteger();
            BigInteger s = new BigInteger();
            BigInteger twoton = new BigInteger();
            Stopwatch sw = new Stopwatch();
            sw.Start(); //TIME START
            Console.WriteLine("The number 2^2 - 1 (3) is prime. \nTime Elapsed: {0} ms", sw.ElapsedMilliseconds);
            int p = 2;
            int x;
            bool primefound = false;
            while (true == true)
            {
                while (primefound == false)
                {
                    for (x = 2; x < p; x++)
                    {
                        int mod = p % x;
                        if (mod == 0)
                        {
                            p++;
                            break;
                        }
                    }
                    if (x == p)
                    {
                        primefound = true;
                    }
                }
                s = 4;
                twoton = 1;
                int count = p - 2;
                for (int y = 0; y < p; y++)
                {
                    twoton = twoton * 2;
                }
                number = twoton - 1;
                for (int y = 0; y < count; y++)
                {
                    s = ((s * s) - 2) % number;
                    if (s == 0)
                    {
                        Console.WriteLine("The number 2^{0} - 1 ({1}) is prime. \nTime Elapsed: {2} ms", p, number, sw.ElapsedMilliseconds);
                        break;
                    }
                }
                p++;
                primefound = false;
... keep reading on reddit ➑

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/thomas_20two
πŸ“…︎ May 29 2021
🚨︎ report
Fr. Marin Mersenne was a French polymath whose works touched a wide variety of fields. He is perhaps best known today among mathematicians for Mersenne prime numbers, those which can be written in the form Mβ‚™ = 2ⁿ βˆ’ 1 for some integer n. #C++ #MersenneTwister #ChurchandScience
πŸ‘︎ 28
πŸ’¬︎
πŸ‘€︎ u/sintovarghese
πŸ“…︎ May 02 2021
🚨︎ report
Great Internet Mersenne Prime Search mersenne.org/report_miles…
πŸ‘︎ 19
πŸ’¬︎
πŸ‘€︎ u/_uhhhm_
πŸ“…︎ Dec 04 2020
🚨︎ report
Need help with my Mersenne prime calculator

So kinda a newbie to Python, decided to try my hand at printing out math sequences, going well so far till I decided to try Mersenne primes. Here's how my code looks like:

choice_sequence = input("""please choose a sequence:
* factorials [0]
* Fibonacci [1]
* Tribonacci [2]
* Primes [3]
* Mersenne primes [4]
""")
def prime_checker(n):
    if n > 1:
        for i in range(2, int(n/2) + 1):
            if (n % i) == 0:
                return ""
                break
        else:
            return n
    else:
        return ""
while True:
    try:
        length_input = int(input("please enter the amount of digits in the sequence: "))
    except ValueError:
        print("the amount of digits has to be an integer")
    else:
        if length_input > 0:
            break
        else:
            print("the amount of digits can't be zero or less")
# some other code here, doesn't matter
elif choice_sequence == "4":
    to_print = ""
    i = 0
    count = 0
    while True:
        if prime_checker(2 ** i - 1) == 2 ** i - 1:
            to_print = to_print + str(2 ** i - 1) + ", "
            count = count + 1
            i = i + 1
        else:
            i = i + 1
        if count == length_input:
            print(to_print[:-2])
            break

Up to seven Mersenne primes are printed in a blink of an eye, eight take three-four minutes, and I've not been patient enough to wait for nine or ten. My question is: is it a normal behavior granted that they get harder and harder to find, or is it the issue in my code?

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/GlebRyabov
πŸ“…︎ Mar 01 2021
🚨︎ report
The reason why 127 hours is called that is because 127 is a Mersenne prime number.

List of Mersenne primes: https://oeis.org/A000668

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/davockx
πŸ“…︎ Mar 02 2021
🚨︎ report
GIMPS finds 51st known Mersenne prime mersenne.org/primes/?pres…
πŸ‘︎ 1k
πŸ’¬︎
πŸ‘€︎ u/ixfd64
πŸ“…︎ Dec 21 2018
🚨︎ report
Is there a pattern in the mersenne primes?

I saw a numberphile video on Mersenne primes, and I found out that sometimes 2 to the N - 1 is sometimes a prime. So I was wondering if there is a relationship between the Exponents, N, in Mersennes. Please explain in simple terms.

πŸ‘︎ 1k
πŸ’¬︎
πŸ‘€︎ u/mindfrom1215
πŸ“…︎ May 21 2016
🚨︎ report
50th known Mersenne prime found mersenne.org/primes/press…
πŸ‘︎ 1k
πŸ’¬︎
πŸ‘€︎ u/ixfd64
πŸ“…︎ Jan 03 2018
🚨︎ report
The volunteer computing project PrimeGrid has discovered a 6.25 million digit prime number, largest Generalized Fermat prime, second largest non-Mersenne prime, and second largest prime found by the project. primegrid.com/forum_threa…
πŸ‘︎ 832
πŸ’¬︎
πŸ‘€︎ u/numbermaniac
πŸ“…︎ Sep 03 2017
🚨︎ report
Help with the optimization of Mersenne Prime.

https://github.com/Ubuntu19019/learnruby/blob/master/Mersenne_Prime A mersenne prime is a prime number where the prime number plus one is a power of two. The code is working, but I suspect my power_of_two? helper method is preventing the code from running at a realistic speed. I've been trying to figure out a different way to approach that method. If I think of it as a folder that always divides by 2 I was thinking maybe it would work better recursively, but making a boolean recursive helper function is way over my head at the moment.

πŸ‘︎ 3
πŸ’¬︎
πŸ“…︎ Jul 08 2020
🚨︎ report
Someone posted this 3x Radeon VII setup on the Mersenne primes forum. Apparently these cards are leagues ahead of anything else for big prime number hunting.
πŸ‘︎ 8
πŸ’¬︎
πŸ“…︎ May 31 2020
🚨︎ report
A prime p is the size of the unit group of a commutative ring iff p is a Mersenne prime.

This post is a generalization of this post.

Edit: p is an odd prime*

πŸ‘︎ 24
πŸ’¬︎
πŸ‘€︎ u/nhum
πŸ“…︎ May 13 2020
🚨︎ report
Repost with corrected description (video is correct, the mistake was all me). My student has made this fantastic video explaining the connection between Perfect Numbers and Mersenne Primes. Work by Euclid and Euler showed a one-to-one correspondence between EVEN Perfect Numbers and Mersenne primes. youtube.com/watch?v=rIZW1…
πŸ‘︎ 53
πŸ’¬︎
πŸ‘€︎ u/tomrocksmaths
πŸ“…︎ Jan 02 2020
🚨︎ report
Using AWS credits for GIMPS (Great Internet Mersenne Prime Search)

I have $100 of AWS credits and wanted to use them for GIMPS, can anyone recommend what would be my best option for contributing as much as possible with this many credits?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/steveurkel99
πŸ“…︎ Nov 28 2020
🚨︎ report
Mersenne prime multiplied by the greatest power of two less than it
πŸ‘︎ 30
πŸ’¬︎
πŸ“…︎ Jun 11 2019
🚨︎ report
Largest prime number discovered by Dr Curtis Cooper at the University of Central Missouri. The 49th known Mersenne prime.
πŸ‘︎ 41
πŸ’¬︎
πŸ‘€︎ u/RAMbo-AF
πŸ“…︎ Aug 29 2019
🚨︎ report
49th Mersenne Prime Found (M74207281) mersenne.org/primes/?pres…
πŸ‘︎ 759
πŸ’¬︎
πŸ‘€︎ u/Gersthofen
πŸ“…︎ Jan 19 2016
🚨︎ report
Largest Mersenne Prime calculated before computers
πŸ‘︎ 23
πŸ’¬︎
πŸ‘€︎ u/Tak5035
πŸ“…︎ Aug 03 2020
🚨︎ report
Mersenne Primes

Mersenne Primes are 1 less than a power of 2, for instance, 2^2 -1=3. I want to type all the Mersenne Primes we have found up to 2^74,207,281 -1, the largest Mersenne Prime ever found. If the numbers get too big, just put it in the scientific notation (2^74,207,281 -1)

πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/WGJC3107
πŸ“…︎ Aug 08 2017
🚨︎ report
48th Mersenne prime found! newscientist.com/article/…
πŸ‘︎ 587
πŸ’¬︎
πŸ‘€︎ u/Tordir
πŸ“…︎ Feb 05 2013
🚨︎ report
M(32582657) confirmed to be the 44th Mersenne Prime (all lower candidates tested and double-checked) mersenne.org/?new=true
πŸ‘︎ 354
πŸ’¬︎
πŸ‘€︎ u/blahpy
πŸ“…︎ Nov 10 2014
🚨︎ report
Looks like a new Mersenne prime will be announced (very) soon! mersenneforum.org/showthr…
πŸ‘︎ 47
πŸ’¬︎
πŸ‘€︎ u/ApeOfGod
πŸ“…︎ Jan 02 2018
🚨︎ report
The 48th known Mersenne Prime has been found mersenne.org/various/5788…
πŸ‘︎ 260
πŸ’¬︎
πŸ‘€︎ u/Frencil
πŸ“…︎ Feb 05 2013
🚨︎ report
I know every digit of the 50th known Mersenne prime

However, reciting 77,232,917 1's does get tiring really fast.

πŸ‘︎ 45
πŸ’¬︎
πŸ‘€︎ u/ixfd64
πŸ“…︎ Jan 31 2018
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.