![]() |
|
|
#364 |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
9,767 Posts |
Congratulations to everyone involved!!!
![]() If anyone wants to help get the announcement on Slasdot (and have a Slashdot account) please go to http://slashdot.org/recent and "+" the "New largest known prime number found: 2^57,885,161-1" story. I submitted the first paragraph of George's press release anonymously. |
|
|
|
|
|
#365 | |
|
Einyen
Dec 2003
Denmark
2×1,579 Posts |
Quote:
How long after 23:30 UTC when it was found did you start your run? |
|
|
|
|
|
|
#366 |
|
"Åke Tilander"
Apr 2011
Sandviken, Sweden
56610 Posts |
Which computer and processer was used for the discovery?
|
|
|
|
|
|
#367 |
|
"Mike"
Aug 2002
2·23·179 Posts |
If our (not-so-elegant) programming is correct, every six digit string is present in the decimal expansion.
Code:
#!/usr/bin/perl -w
use strict;
my $line;
open M, "48.txt";
$line = <M>;
chomp $line;
close M;
for my $a ( 0 .. 9 ) {
for my $b ( 0 .. 9 ) {
for my $c ( 0 .. 9 ) {
for my $d ( 0 .. 9 ) {
for my $e ( 0 .. 9 ) {
for my $f ( 0 .. 9 ) {
my $str = join ( '', $a, $b, $c, $d, $e, $f );
print "$str\n" if $line !~ m/$str/;
}
}
}
}
}
}
Code:
echo '2^57885161-1' | bc | tr -d '\\\n' | sed 's/$/\n/' > 48.txt |
|
|
|
|
|
#368 |
|
"Kieren"
Jul 2011
In My Own Galaxy!
2×3×1,693 Posts |
Add my congratulations to everyone!
Salud, dinero, amor, y tiempo para gustar lo! (Here's to) Health, money, love, and time to enjoy it! |
|
|
|
|
|
#369 |
|
"Nathan"
Jul 2008
Maryland, USA
5×223 Posts |
Googling "48th Mersenne prime", I found that we are in something called "Wopular": http://www.wopular.com/48th-mersenne-prime-found
"Hacker News" links to the press release: http://news.ycombinator.com/ Interestingly, there's also a crank out there that swears up and down that he has found M48, M49, and M50 on an iPhone...laissez le bon temps rouleau! Last fiddled with by NBtarheel_33 on 2013-02-05 at 16:13 |
|
|
|
|
|
#370 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
100101000101102 Posts |
Quote:
* (Mp+2)/3 has prime factors 7061989643 * 100271784664656667 (no other factors < 2e18) * Mp-2 has prime factors 29 * 167 * 269 * 453527886599 (no other factors < 1e11) * 2*Mp-1 has prime factors 193 * 1549 * 1707450949 (no other factors < 1e9) |
|
|
|
|
|
|
#371 |
|
1976 Toyota Corona years forever!
"Wayne"
Nov 2006
Saskatchewan, Canada
4,691 Posts |
What was the date? I need to know if it was before or after I found them on my Abacus and Double-checked them on my Slide Rule.
|
|
|
|
|
|
#372 |
|
P90 years forever!
Aug 2002
Yeehaw, FL
753710 Posts |
|
|
|
|
|
|
#373 | |
|
Bemusing Prompter
"Danny"
Dec 2002
California
5×479 Posts |
Quote:
|
|
|
|
|
|
|
#374 |
|
If I May
"Chris Halsall"
Sep 2002
Barbados
9,767 Posts |
Amusingly, this exponent passed through two ANONYMOUS assignments before finally being picked up by Curtis on 2012-12-12 -- one assignment on 2012-08-14 which then expired 60 days later, then another on 2012-10-13 which expired 60 days later.
Neither had done a single cycle on it. Or, at least, not reported. |
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| I think I discovered new largest prime | harrik | Miscellaneous Math | 8 | 2020-07-14 20:06 |
| Number of zero's in largest prime... | Heather | Math | 90 | 2006-04-01 22:06 |
| Largest known prime not Mersenne? | Orgasmic Troll | Lounge | 5 | 2005-12-23 22:00 |
| Sixth bigest prime (no Mersenne's) discovered! | gbvalor | Math | 4 | 2004-01-08 20:52 |
| New largest prime number??? | McBryce | Lounge | 39 | 2003-08-12 19:35 |