New Largest Prime Found: Over 7 Million Digits
Gilchrist continues "If you want to see the number in written in decimal, Perfectly Scientific, Dr. Crandall's company which developed the FFT algorithm used by GIMPS, makes a poster you can order containing the entire number. It is kind of pricey because accurately printing an over-sized poster in 1-point font is not easy! Makes a cool present for the serious math nut in your family.
For more information, the press release is available.
Congratulations to Josh and every GIMPS contributor for their part in this remarkable find. You can download the client for your chance at finding the next world record prime! A forum for newcomers is available to answer any questions you may have.
GIMPS is closing in on the $100,000 Electronic Frontier Foundation award for the first 10-million-digit prime. The new prime is 72% of the size needed, however an award-winning prime could be mere weeks or as much as few years away - that's the fun of math discoveries, said GIMPS founder George Woltman. The GIMPS participant who discovers the prime will receive $50,000. Charity will get $25,000. The rest will be used primarily to fund more prime discoveries. In May 2000, a previous participant won the foundation's $50,000 award for discovering the first million-digit prime."
... but why exactly is this so important? Can we use this number in any way, or is it just another prime?
Quid festinatio swallonis est aetherfuga inonusti?
Africus aut Europaeus?
Does anyone know if a distributed computing project exists for finding large prime numbers? That would be a pretty cool way to spend some CPU cylces.
- Search for intelligent aliens?
- Find a cure for cancer?
oris this number now copyrighted?
"It's so convenient to have a system where everyone is a criminal" - A. Hitler
He's also found the largest known perfect number, 2^(24,036,583-1)*((2^24,036,583)-1)
I understand that producing such a poster will be expensive but this is ridiculous:
Without frame: $77.00
With frame: $247.00
SCO's claim that their code has been stolen sounds more logical than this!
Actually the last 9 digits are 733969407, as this simple C program will show you:
// minus 1
#include <stdio.h>
int main()
{
int i;
int p = 1;
int m = 1000000000;
for (i = 0; i < 24036583; i++)
p = p*2 % m;
p = (p+m-1) % m;
printf("%d\n", p);
}
What if the message that your SETI's going to find out happens to contains this prime!?!?
Isn't it possible that some civilisation is so advanced that their 'bc' would give back the 50th mersenne prime just like our bc would return 3*5
Wouldn't it be cool to find out that the msg you've just now found on SETI isn't gibberish but a hi from another advanced civilisation
Offtopic!?!?!
Am I seeing things
Who ever the hell moderated the parent needs some medication.
This AC was replying to one who didn't RTFA, and gets modded down by another who definitely RTFA.
(Karma be damned : I am no better than an AC now anyway)
Don't use one that's based on factoring, then. Go for a discrete-logarithm based cryptosystem, like ElGamal. Mmmm... 23-megabit asymmetric key... (Now we just need a 3-megabit hash function to make the signatures worthwhile. Oh, and some serious silicon to push the electrons required for a digital signature with a key that size. Ooog.)
One thing I'd like to know is, what is the smallest unknown prime number? And more importantly, is there an award for finding it, thereby making it no longer unknown?