mersenneforum.org  

Go Back   mersenneforum.org > Factoring Projects > FactorDB

Reply
 
Thread Tools
Old 2011-01-18, 09:26   #1024
schickel
 
schickel's Avatar
 
"Frank <^>"
Dec 2004
CDP Janesville

2×1,061 Posts
Exclamation

Looks like the gremlins are back

248130 is now MIA, too....
schickel is offline   Reply With Quote
Old 2011-01-18, 09:37   #1025
schickel
 
schickel's Avatar
 
"Frank <^>"
Dec 2004
CDP Janesville

2×1,061 Posts
Exclamation

Quote:
Originally Posted by warut View Post
I've noticed that the database erroneously omits some small factors of the following 77-digit numbers:

Code:
 
80978084394598568390520920252440060895670346459831516622284554518849503146397
82609404176288347510975214065063503631619108607371480044587508148396968704911
88236918639719858997946921372584311423090252002347982879826766163694271697843
88894857952232839709785628818457172955757575436001096904562755715875193607509
92250106588933435730861605431146390431716761868772836262451636991161111409211
96219970786531934764768710647149833037379504561939264511368166182316972958369
Looks like not just those.....I was looking at the list of unfactored composites and found this one:
Code:
 FF 21 (show) 476006172212715945491<21> = 49974229
That should actually be:
Code:
476006172212715945491 = 520763 (Curve 1) x 18290533 (Curve 1) x 49974229
Maybe a missing index?
schickel is offline   Reply With Quote
Old 2011-01-18, 09:38   #1026
gd_barnes
 
gd_barnes's Avatar
 
May 2007
Kansas; USA

32×13×89 Posts
Default

Quote:
Originally Posted by schickel View Post
Looks like the gremlins are back

248130 is now MIA, too....
I've probably found 4-5 of these just browsing around in the last 15 minutes. The gremlins are out in force.
gd_barnes is offline   Reply With Quote
Old 2011-01-18, 19:47   #1027
mdettweiler
A Sunny Moo
 
mdettweiler's Avatar
 
Aug 2007
USA (GMT-5)

11000011010012 Posts
Default

Quote:
Originally Posted by schickel View Post
Looks like the gremlins are back

248130 is now MIA, too....
Looks fine now. Perhaps whatever the problem was has since been resolved?
mdettweiler is offline   Reply With Quote
Old 2011-02-01, 11:38   #1028
schickel
 
schickel's Avatar
 
"Frank <^>"
Dec 2004
CDP Janesville

212210 Posts
Exclamation Zip library broken

I've had a problem uploading Primo certs or getting a batch of PRPs to work on.

Uploading a zip file gives "0 certificates found, 0 certificates added." Trying to download a new batch of input files gives the source of the download page, but with a .zip extension....

[Edit: Whups, it's actually totally broken.....uploading a single cert gives an error: "Not a PRIMO certificate"]

Last fiddled with by schickel on 2011-02-01 at 11:41 Reason: Extra details
schickel is offline   Reply With Quote
Old 2011-02-01, 13:30   #1029
ET_
Banned
 
ET_'s Avatar
 
"Luigi"
Aug 2002
Team Italia

61×79 Posts
Default

Quote:
Originally Posted by schickel View Post
[Edit: Whups, it's actually totally broken.....uploading a single cert gives an error: "Not a PRIMO certificate"]
I had that same message when I tried to upload a .cr file instead of a .out file

Luigi
ET_ is offline   Reply With Quote
Old 2011-02-02, 09:55   #1030
schickel
 
schickel's Avatar
 
"Frank <^>"
Dec 2004
CDP Janesville

2×1,061 Posts
Thumbs up

Quote:
Originally Posted by schickel View Post
[Edit: Whups, it's actually totally broken.....uploading a single cert gives an error: "Not a PRIMO certificate"]
Quote:
Originally Posted by ET_ View Post
I had that same message when I tried to upload a .cr file instead of a .out file

Luigi
Another of those intermittent problems. The certs loaded fine just now....(and I got some more PRPs to chew on.)
schickel is offline   Reply With Quote
Old 2011-02-07, 20:53   #1031
EdH
 
EdH's Avatar
 
"Ed Hall"
Dec 2009
Adirondack Mtns

EFE16 Posts
Default db Guru Help Request

How do I use wget to retrieve a clean elf file without leading and trailing garbage?
Code:
 wget "http://factordb.com/elf.php?seq=159978" -O Test159978.elf

or

 wget "http://factordb.com/elf.php?seq=159978&type=1" -O Test159978.elf

or, several other things I've tried, including the older search.php versions...
...best result for any attempts:
Code:
5e5ef 
0 .   159978 = 2 * 3 * 7 * 13 * 293 
1 .   235158 = 2 * 3 * 7 * 11 * 509 
2 .   352362 = 2 * 3 * 58727 
...
3230 .   257469686632080847016144154640723162457002040467095575936113982164854371218672945325173911559672660014950268 = 2^2 * 3 * 7 * 53 * 241279058983 * 66443697345877 * 28826034541500877367960116238060123 * 125144746913067089723410315497905716995589463 
3231 .   442070594031576942610743839873687312033576217704968196906321544358946158090482751730066571082202347756787844 = 2^2 * 3 * 7 * 11 * 593 * 1993 * 440789663 * 8618858183434237 * 1943371990666116371 * 54830295787184191519985269515892871132256922604872458919 
3232 .   846767987301449255217862850803252789984702997936839330116065333169340783453579157175365478554037752003094396 = 2^2 * 3 * 7 * 11 * 7677943333 
 
0 
I can write a filter to remove the trash, but I would rather not have to.

Last fiddled with by EdH on 2011-02-07 at 20:55 Reason: highlight garbage
EdH is offline   Reply With Quote
Old 2011-02-07, 21:15   #1032
bchaffin
 
Sep 2010
Portland, OR

22×3×31 Posts
Default

Quote:
Originally Posted by EdH View Post
How do I use wget to retrieve a clean elf file without leading and trailing garbage?
Here's an example for sequence 4788:
Code:
wget "http://factordb.com/search.php?se=1&aq=4788&action
=last&text=Text&raw=1" -q -O alq_4788.elf
bchaffin is offline   Reply With Quote
Old 2011-02-07, 21:56   #1033
schickel
 
schickel's Avatar
 
"Frank <^>"
Dec 2004
CDP Janesville

2×1,061 Posts
Default

Quote:
Originally Posted by bchaffin View Post
Here's an example for sequence 4788:
Code:
wget "http://factordb.com/search.php?se=1&aq=4788&action
=last&text=Text&raw=1" -q -O alq_4788.elf
That works, or you can use the format of the "Download .elf file" link from the sequence page:
Code:
http://factordb.com/elf.php?seq=4788&type=1
schickel is offline   Reply With Quote
Old 2011-02-07, 22:07   #1034
EdH
 
EdH's Avatar
 
"Ed Hall"
Dec 2009
Adirondack Mtns

2×19×101 Posts
Default

Quote:
Originally Posted by bchaffin View Post
Here's an example for sequence 4788:
Code:
wget "http://factordb.com/search.php?se=1&aq=4788&action
=last&text=Text&raw=1" -q -O alq_4788.elf
Thanks, but that's what I used to use before the db upgrade and it's also one of the search.php references from my previous post. Does this actually work correctly for you guys, or do you filter out the garbage somewhere? I get the following on several WinXP, Fedora and Ubuntu machines, using your exact example (minus the crlf):
Code:
5a7a7 
0 .   4788 = 2^2 * 3^2 * 7 * 19 
1 .   9772 = 2^2 * 7 * 349 
2 .   9828 = 2^2 * 3^3 * 7 * 13 
3 .   21532 = 2^2 * 7 * 769 
...
2614 .   950694750891399537774506607569227707243584239810766994617105763298134474411523552640927629495296051190146771947077202838992064785979661115875969788941362541369328266037136528 = 2^4 * 153485659 * 15001788992106204851 * 7904030188472445800999821087 * 3131857265787001920849047909972699 * 1042460735970821722717442901150875158725290458103769196335312838338655969091227313749 
2615 .   891276340961619869583852578560456385845894067834432241186080795464687218769515514426271743711536845547799905030957854362094169750036091060575376106269952814372988072202863472 = 2^4 * 179 * 7793 * 50527 * 5586341 * 3700301944592570904281 * 97219622210393346158104222098978591299 * 393271649708717468267245625827714408197114509242796420944928464009313769873612586453115790508117 
2616 .   845476275203580267760017766432229247474240350776638338491432287237591892584336198742892209876065652639662701929236838342591531452910872710622830879913662039251337677197712528 = 2^4 * 59 * 992659 * 902255102166423490009671343126746462171001080346755978958731265753241892572715498054792487878159386530741134577019773281284532051603184134287890966817985022169929193 
2617 .   820400267269150543602962894738615578763678283519001731044671684330868467986754886573378568615803023098843518118320635207852289217689742468077694315732404243268057882314121872 = 2^4 * 23 
 
0 
Is it possible that only "I" am having this issue? It's showing up across platforms. It would have to be a pretty selective occurrence to only hit me, but still hit all my machines - ISP specific, I suppose.

The Download link is fine for manual retrieval, but it's useless for my AliWin program or the AliPerl script.

Last fiddled with by EdH on 2011-02-07 at 22:10 Reason: clarity
EdH is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Database for k-b-b's: 3.14159 Miscellaneous Math 325 2016-04-09 17:45
Factoring database issues Mini-Geek Factoring 5 2009-07-01 11:51
database.zip HiddenWarrior Data 1 2004-03-29 03:53
Database layout Prime95 PrimeNet 1 2003-01-18 00:49
Is there a performance database? Joe O Lounge 35 2002-09-06 20:19

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


Fri Aug 6 06:20:30 UTC 2021 up 14 days, 49 mins, 1 user, load averages: 3.55, 2.92, 2.83

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.