Slashdot Mirror


42nd Mersenne Prime Confirmed

Jazzer_Techie writes "The possible Mersenne Prime discovered last week has now been confirmed. This prime has 7,816,230 digits, which makes it not only the largest Mersenne Prime, but also the largest prime of any kind ever discovered. For those who don't want to take time to read the article, the prime is 2^25,964,951 - 1."

10 of 296 comments (clear)

  1. 2^25,964,951 - 1 by Joey+Patterson · · Score: 5, Funny

    Can anyone post those digits in case the site gets /.'ed?

    1. Re:2^25,964,951 - 1 by mrspecialhead · · Score: 5, Funny

      Here's an Exclusive Binary Preview!

      11111111111111111111111111111111
      11111111111111111111111111111111
      11111111111111111111111111111111...

      --Your free demo has expired. For access to the rest of this content, please subscribe!--

    2. Re:2^25,964,951 - 1 by Eric+Smith · · Score: 5, Funny

      My web site has the full expansion in binary. It's over 25 megabytes, so please don't download it unless you really need it.

    3. Re:2^25,964,951 - 1 by TheSHAD0W · · Score: 5, Funny

      Hope your web server has gzip and/or bzip compression...

  2. Man. by DrEldarion · · Score: 5, Funny

    Those math freaks sure are a bunch of GIMPS.

  3. Its the answer! by Rs_Conqueror · · Score: 5, Funny

    This is the 42nd one? I wonder if that means anything...

  4. Participate in the search by Drooling_Sheep · · Score: 5, Informative

    GIMPS (Great Internet Mersenne Prime Search

    They have Windows, Linux, FreeBSD, and OS/2 clients.

  5. Re:Largest known perfect number? by MC68000 · · Score: 5, Informative

    yes. There is a theorem due to Euclid that every even perfect number (a number which is the product of all of its divisors except itself) is of the form
    (2^n-1)*2^n. The given form does not apply to odd perfect numbers, but it is unknown whether any odd perfect numbers exist.

    --
    E = m c^3 Don't drink and derive E = m c^3
  6. Big Deal - Javascript!! by XanC · · Score: 5, Funny

    I found it by leaving my browser open for a while on this page.

  7. Re:Why? by MC68000 · · Score: 5, Interesting

    There actually are very good algorithms for finding primality. It has reached the point where proving a number prime is MUCH easier than finding any factors of it.

    There are two types. One is deterministic, and will give you absolute proof that the tested number is prime. The other type is probability based. These are more popular. The most widely used is known as the Miller-Rabin test. It is known to be absolutely correct for all n 3*10^16. For larger n, it will never report a composite to be prime, but there is a small (around 10^-20) chance the "prime" number will be composite. There are no known prime numbers that Miller-Rabin reports to be composite.

    In the case of Mersenne numbers, it's a different story. There is a deterministic algorithm called the Lucas-Lehmer test. This will determine whether 2^p-1 is prime with O-notation p! The catch of course is that it only works for Mersenne numbers.

    --
    E = m c^3 Don't drink and derive E = m c^3