mersenneforum.org  

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

Reply
 
Thread Tools
Old 2008-09-17, 01:42   #254
uigrad
 
uigrad's Avatar
 
Aug 2008

1268 Posts
Default

Quote:
Originally Posted by jrk View Post

Code:
0x1248125A492480__

0xB6C80137FEDB7E__

Are these really the fake residues? They should have stood out. I can't quite figure out what George's method is, but there are a lot of patterns in those residues.

Let's take the first one:
Code:
0x1248125A492480 = 00010010010010000001001001011010010010010010010010000000 b2

Let k = 585 = 1001001001 b2 
   (palindrome in base 2 or 10)

k*2^7 + k*2^19 + k*2^27 + k*2^43
     =                                        10010010010000000 b2
       +                          10010010010000000000000000000 b2
       +                  1001001001000000000000000000000000000 b2
       +  10010010010000000000000000000000000000000000000000000 b2
       ________________________________________________________
     = 00010010010010000001001001011010010010010010010010000000 b2
     = 0x1248125A492480

The 14-digit residue is 56 bits.  19+27 = 56, so those two are
centered in the final residue.  43+7 = 50, which is why the
first and fourth group are not quite centered.
Now the second residue also has patterns, but they seem harder to explain:
Code:
0xB6C80137FEDB7E = 10110110110010000000000100110111111111101101101101111110 b2
= 1 011011011 0010000000000100 1101111111111011 011011011 11110 b2

I'm not sure why to split it this way, but it seems to work

Group 1: 1
   - lonely digit
Group 2: 011011011
   = 3*2^0 + 3*2^3 + 3*2^6 (repeating digits)
Group 3: 0010000000000100
   = 2^2 + 2^13 (palindrome)
Group 4: 1101111111111011
   - same as group 3, but bits reversed
Group 5: 011011011
   - same as group 2.
Group 6: 11110
   - equal to 30 in base 10.  I don't understand the significance here either.
If this was discussed in a different thread, let me know. I couldn't find it anywhere.

Last fiddled with by uigrad on 2008-09-17 at 02:00 Reason: rearranged the groups for the second residue
uigrad is offline   Reply With Quote
Old 2008-09-17, 02:44   #255
jrk
 
jrk's Avatar
 
May 2008

3·5·73 Posts
Default

Quote:
Originally Posted by uigrad View Post
Are these really the fake residues? They should have stood out. I can't quite figure out what George's method is, but there are a lot of patterns in those residues.
The pseudocode that describes the fake residue generator is described here:

http://www.mersenneforum.org/showpos...0&postcount=30

When applied to those exponents it makes the fake residues that were posted.
jrk is offline   Reply With Quote
Old 2008-09-17, 04:16   #256
uigrad
 
uigrad's Avatar
 
Aug 2008

10101102 Posts
Default

Quote:
Originally Posted by jrk View Post
When applied to those exponents it makes the fake residues that were posted.
Ah, you are right. For M(Aug), he used the fake exponent for the fake residue, and for M(Sep), he used the August exponent for the fake residue.

I checked it with the following perl script, and for some reason I'm off by 1 for the last residue:
Code:
#!/usr/bin/perl
foreach (13466917, 20996011, 32428427, 43112609) { f($_); }
sub f
{
  $prime = shift;
  $p = $prime;
  $residue = "";
  foreach (1..14) 
  {
    $digit = substr('0123456789ABCDEF',($p & 0xF)+0,1);
    $p = (($p & 0x8FFFFFFF) << 1) | ($p >> 28);
    $residue = $residue . $digit;
  }
  print ("$prime: ${residue}__\n");
}
Code:
13466917: 5A4800136C936D__
20996011: B6C80125A48000__
32428427: B6C80137FEDB7E__
43112609: 1248125A492481__

Last fiddled with by uigrad on 2008-09-17 at 04:16
uigrad is offline   Reply With Quote
Old 2008-09-17, 06:30   #257
philmoore
 
philmoore's Avatar
 
"Phil"
Sep 2002
Tracktown, U.S.A.

3×373 Posts
Default

I see that the banner is back to "Finding 10 World Record Primes!" How about changing it to "Finding 11 World Record Primes and 1 Near Miss!" ?
philmoore is offline   Reply With Quote
Old 2008-09-17, 06:39   #258
jrk
 
jrk's Avatar
 
May 2008

3·5·73 Posts
Default 12 record primes!

As far as I'm concerned the order of the two new primes isn't important.

The world learned about them at the same time, and they are the 1st and 2nd largest known primes, making them bigger than any previously known prime at the time of announcement.

I would simply say "Finding 12 world record primes" and be done with it.
jrk is offline   Reply With Quote
Old 2008-09-17, 07:28   #259
jinydu
 
jinydu's Avatar
 
Dec 2003
Hopefully Near M48

2×3×293 Posts
Default

I'm seeing "Finding World Record Primes Since 1996". At least that will never become outdated.
jinydu is offline   Reply With Quote
Old 2008-09-17, 13:29   #260
Uncwilly
6809 > 6502
 
Uncwilly's Avatar
 
"""""""""""""""""""
Aug 2003
101×103 Posts

22·23·107 Posts
Default

Quote:
Originally Posted by jinydu View Post
I'm seeing "Finding World Record Primes Since 1996". At least that will never become outdated.
However: The text banner on the site is inconsistant. Some still refer to 2006.
Attached Thumbnails
Click image for larger version

Name:	Clipboard007.gif
Views:	111
Size:	9.8 KB
ID:	2710  
Uncwilly is online now   Reply With Quote
Old 2008-09-17, 18:44   #261
uigrad
 
uigrad's Avatar
 
Aug 2008

2·43 Posts
Default

The 2006 announcement is also at the top of the credits, math, and links pages:
http://mersenne.org/credits.htm
http://mersenne.org/math.htm
http://mersenne.org/links.htm

And, there's a number of places that scream at the user about how they could win the $100,000 prize!. They could just be changed to the $150,000 prize now. Maybe most of these are on the primenet server. ie:

http://mersenne.org/ips/index.html#contest
http://mersenne.org/cgi-bin/primenet...xxx&UserPW=yyy


The faq on primenet is really dated. For one, it still links to the (now defunct) entropia.com. It also recommends users should download IE 5.0 before trying to connect:
http://mersenne.org/ips/faq.html#wininet


And the download page at primenet gives 22.12 as the latest version (or version 18.1 for linux). It has a big exploding bubble that say "NEW!", just so users don't look through the download section without noticing the brand new 22.12 version:
http://mersenne.org/ips/#free_software

To top things off, all 6 mirrors at that site are down, so even if a user was willing to live with 22.12, they couldn't get it here!


While we're listing things that should be updated, I'd like to see what the growth history looks like since February 2006:
http://mersenne.org/ips/stats.html

Also, the links at the bottom of that stats.html page contain typos. Many of them have mersenne.orgips as the hostname
uigrad is offline   Reply With Quote
Old 2008-09-17, 20:49   #262
M29
 
M29's Avatar
 
Dec 2003

22·41 Posts
Default

Regarding outdated pages, maybe George would welcome some help?

But I'm not volunteering
M29 is offline   Reply With Quote
Old 2008-09-17, 20:51   #263
ixfd64
Bemusing Prompter
 
ixfd64's Avatar
 
"Danny"
Dec 2002
California

74 Posts
Default

The banners need updating as well. They're still talking about M38!

By the way, is George the only one who can edit the GIMPS website?
ixfd64 is online now   Reply With Quote
Old 2008-09-17, 23:27   #264
cheesehead
 
cheesehead's Avatar
 
"Richard B. Woods"
Aug 2002
Wisconsin USA

22·3·641 Posts
Default

"It exists. Hiding. Cloaked. Find Mersenne Prime #39." !!

Will someone please create a replacement for that banner (or show me how to do it with Paint -- I will if I can)?

And create a few more (#48, #49, #50, ...) for the future -- keep them offline until the time comes, but send copies to Scott, George, and whoever else can update the PrimeNet site. (Hmmmm ... actually, it wouldn't do any harm to display one of those now, would it?)

- - -

Shucks, I volunteer to update _all_ the banners, if someone shows me how to do it with Paint.

Last fiddled with by cheesehead on 2008-09-17 at 23:31
cheesehead is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
A nice introduction to primes and related math axn Lounge 2 2019-10-15 15:19
Lucas-Lehmer Primes henryzz And now for something completely different 42 2019-06-03 14:09
compendium of formulas related with primes ? skan Miscellaneous Math 6 2012-12-14 12:56
Holy new Mersenne prime, Batman! (M47 related) ixfd64 News 901 2008-11-10 19:29
holy tethered cow! new Mersenne prime? (M43-related) ixfd64 News 265 2006-01-04 09:47

All times are UTC. The time now is 23:20.


Fri Aug 6 23:20:53 UTC 2021 up 14 days, 17:49, 1 user, load averages: 4.35, 4.17, 4.08

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.