mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > Software

Reply
 
Thread Tools
Old 2003-06-17, 09:46   #1
flasholinos
 
Jun 2003

410 Posts
Default about program NUMBERS

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
flasholinos is offline   Reply With Quote
Old 2003-06-17, 14:31   #2
S80780
 
Jan 2003
far from M40

53 Posts
Default

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.
S80780 is offline   Reply With Quote
Old 2003-06-17, 15:46   #3
trif
 
trif's Avatar
 
Aug 2002

2×101 Posts
Default

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.
trif is offline   Reply With Quote
Old 2003-06-17, 18:25   #4
S80780
 
Jan 2003
far from M40

12510 Posts
Default

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
S80780 is offline   Reply With Quote
Old 2003-06-17, 19:12   #5
garo
 
garo's Avatar
 
Aug 2002
Termonfeckin, IE

22×691 Posts
Default

I think there must be a typo in the original statement.
garo is offline   Reply With Quote
Old 2003-06-17, 19:32   #6
eepiccolo
 
eepiccolo's Avatar
 
Dec 2002
Frederick County, MD

2·5·37 Posts
Default

Quote:
Originally Posted by garo
I think there must be a typo in the original statement.
Maybe, but who knows.

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.
eepiccolo is offline   Reply With Quote
Old 2003-06-18, 11:52   #7
wpolly
 
wpolly's Avatar
 
Sep 2002
Vienna, Austria

DB16 Posts
Default

It Maybe The Self-Test of the program.
AFAIK, The Self-Test of 1024K FFT Always Begins with M19922945.
wpolly is offline   Reply With Quote
Old 2003-06-18, 14:38   #8
Khemikal796
 
Feb 2003

37 Posts
Default

But why M19922945, because its an easy devide by 5? Or is a simple factor like this picked for a reason?
Khemikal796 is offline   Reply With Quote
Old 2003-06-18, 16:40   #9
trif
 
trif's Avatar
 
Aug 2002

2·101 Posts
Default

Quote:
Originally Posted by wpolly
It Maybe The Self-Test of the program.
AFAIK, The Self-Test of 1024K FFT Always Begins with M19922945.
Aha! The mystery is solved! :D
trif is offline   Reply With Quote
Old 2003-06-18, 18:49   #10
ewmayer
2ω=0
 
ewmayer's Avatar
 
Sep 2002
República de California

2×32×647 Posts
Default

Quote:
Originally Posted by Khemikal796
But why M19922945, because its an easy devide by 5? Or is a simple factor like this picked for a reason?
For self-testing purposes it doesn't matter whether the exponent is prime or not - the Mersenne-mod DWT algorithm works the same way in either case. Now if you saw a composite exponent slated for LL testing in your worktodo file, now that would be worrisome.
ewmayer is offline   Reply With Quote
Reply

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

All times are UTC. The time now is 16:21.


Sun Aug 1 16:21:12 UTC 2021 up 9 days, 10:50, 0 users, load averages: 2.04, 2.03, 1.85

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.