![]() |
|
|
#408 | |
|
∂2ω=0
Sep 2002
República de California
19·613 Posts |
Quote:
|
|
|
|
|
|
|
#409 | |
|
Account Deleted
"Tim Sorbera"
Aug 2006
San Antonio, TX USA
426710 Posts |
Quote:
I looked back over the thread, and realized I ignored a useful clue: that the exponent contains "42". That, along with parallelizing my code, cut the time down to 35 minutes. Then I found a list of exponents with known factors, that cut it down to 2689 candidates, which I can search in about 12 minutes. You're including all primes, which isn't what I did. I used the stats at http://www.mersenne.org/primenet/ to try to take into account known factors and LLs (of the various kinds, and their accuracy: e.g. LL-D is sure, LL-ERR I counted as 50/50). So I think it's accurate to say that before we searched any, we should expect 0.683 in the range, but since we've LL'd the bulk of it, we only expect 0.18 more primes in the range. (I used the (e^gamma/log 2) * log log x formula from your link, and took the simplification of assuming that all numbers in the range had equal probability to be prime; since more of the earlier ones were LL'd, that means my 0.18 is a bit of an overestimate...Edit: Didn't see your more recent post until now, I don't think it would account for the difference between 0.07 and 0.18, though; not sure about that) Last fiddled with by Mini-Geek on 2016-01-20 at 04:41 |
|
|
|
|
|
|
#410 |
|
Bemusing Prompter
"Danny"
Dec 2002
California
5×479 Posts |
Does anyone know how much faster GPU to 72 allowed us to find this new prime?
|
|
|
|
|
|
#411 |
|
Dec 2012
2·139 Posts |
I am considering getting a book printed of the decimal expansion of M74207281. It's not a poster, but it's probably the next best thing. lightningsource.com (the only publisher I found that supports books over 800 pages) gives a quote of $29.54 USD (plus shipping) for a 1200 page hardcover. I haven't looked past their quote calculator, so I'm not sure if they would be too happy about printing a book like this with no author or words and at a smaller font size (at most 5.5).
|
|
|
|
|
|
#412 | |
|
Undefined
"The unspeakable one"
Jun 2006
My evil lair
24×389 Posts |
Quote:
|
|
|
|
|
|
|
#413 |
|
Jun 2003
2·3·7·112 Posts |
|
|
|
|
|
|
#414 | |
|
Romulan Interpreter
Jun 2011
Thailand
2·3·1,609 Posts |
Quote:
|
|
|
|
|
|
|
#415 | |
|
Oct 2015
2·7·19 Posts |
Quote:
http://www.mersenne.ca/exponent.php?...tails=74207281 |
|
|
|
|
|
|
#416 | |
|
Oct 2015
2·7·19 Posts |
Quote:
http://science.slashdot.org/story/16...-274207281---1 |
|
|
|
|
|
|
#417 | |
|
Einyen
Dec 2003
Denmark
2×1,579 Posts |
Quote:
Code:
#include <gmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
void main()
{
mpz_t s;
mpz_init_set_ui(s,0);
mpz_ui_pow_ui(s,2,74207281); mpz_sub_ui(s,s,1);
gmp_printf("%Zd",s);
}
|
|
|
|
|
|
|
#418 |
|
Oct 2015
26610 Posts |
5->7 minutes to get the right libraries compiled and installed, 5 minutes to fix an error in my command line, 4.5 seconds to run the code haha (followed by a few minutes to download the zip file from the server, extract it, and strip the white space to do a diff).
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Are Bitcoins Prime Related | a1call | Miscellaneous Math | 26 | 2021-03-18 14:18 |
| Merry Christmas and a prime! (M50 related) | Prime95 | News | 505 | 2020-01-18 01:03 |
| Oops i did it again. (Prime found) | ltd | Prime Sierpinski Project | 21 | 2006-01-04 14:50 |
| Another new prime (M42-Related) | Uncwilly | News | 132 | 2005-05-10 19:47 |
| some prime-related trick questions | ixfd64 | Puzzles | 2 | 2003-09-23 12:53 |