![]() |
|
|
#1 |
|
Jun 2003
22 Posts |
Hi quys ! im very new in this program and i want some help!!
when i install my program then start testing a M19922945 !! The program gives numbers for testing or we must choose a number?? and how i can choose a number???? Is there a place which i can see which numbers is already tested and find a range to work??? THANKS |
|
|
|
|
|
#2 |
|
Jan 2003
far from M40
53 Posts |
Hi, flasholinos!
If you run MPrime / Prime95 on a comp with internet - access, you can let the program ask a central server, the "PrimeNet" sever, for an exponent to test. You can let the sever choose which type of work your program gets or determine to get only special work types, namely Trial Factoring, Double Checking, First Time Tests or 10,000,000 digit Number Tests (You should only choose one of the last two, if you have a really fast comp or a lot of patience!). In general, it's the best to let the server choose which type of work your comp gets. If your comp doesn't have internet access, you can also use the Manual Test Form to get work and report results. |
|
|
|
|
|
#3 |
|
Aug 2002
2·101 Posts |
Very odd, that exponent isn't even prime. Primenet couldn't have given it out. I'm not even sure Prime95 would LL test it since it isn't a prime exponent.
|
|
|
|
|
|
#4 |
|
Jan 2003
far from M40
7D16 Posts |
I just tried it out. Program output was:
"Error: Work-to-do file contained composite exponent: 19922945" I expect the primality test is the same as in decomp.c: [code:1] /* Return TRUE if arg is a prime */ int isprime (unsigned long p) { unsigned long f, fmax; if ((p & 1) == 0) return (p == 2); if (p % 3 == 0) return (p == 3); fmax = sqrt (p); for (f = 5; f <= fmax; f += 6) { if (p % f == 0) return (0); if (p % (f+2) == 0) return (0); } return (1); } [/code:1] Benjamin |
|
|
|
|
|
#5 |
|
Aug 2002
Termonfeckin, IE
276410 Posts |
I think there must be a typo in the original statement.
|
|
|
|
|
|
#6 | |
|
Dec 2002
Frederick County, MD
2×5×37 Posts |
Quote:
Anyway, the questions that flasholinos asks are answered in the help file. And there is much more info other than that in the help file also. |
|
|
|
|
|
|
#7 |
|
Sep 2002
Vienna, Austria
3·73 Posts |
It Maybe The Self-Test of the program.
AFAIK, The Self-Test of 1024K FFT Always Begins with M19922945. |
|
|
|
|
|
#8 |
|
Feb 2003
37 Posts |
But why M19922945, because its an easy devide by 5? Or is a simple factor like this picked for a reason?
|
|
|
|
|
|
#9 | |
|
Aug 2002
2×101 Posts |
Quote:
|
|
|
|
|
|
|
#10 | |
|
∂2ω=0
Sep 2002
República de California
1164610 Posts |
Quote:
|
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Carmichael numbers and Devaraj numbers | devarajkandadai | Number Theory Discussion Group | 0 | 2017-07-09 05:07 |
| Program to TF Mersenne numbers with more than 1 sextillion digits? | Stargate38 | Factoring | 24 | 2011-11-03 00:34 |
| Command-line program for factoring small numbers | James Heinrich | Software | 22 | 2011-08-29 16:35 |
| 6 digit numbers and the mersenne numbers | henryzz | Math | 2 | 2008-04-29 02:05 |
| LLT numbers, linkd with Mersenne and Fermat numbers | T.Rex | Math | 4 | 2005-05-07 08:25 |