![]() |
![]() |
#1013 | |
Just call me Henry
"David"
Sep 2007
Liverpool (GMT/BST)
37·163 Posts |
![]() Quote:
Sounds like the sieve region should be altered to 40M-100M. This reduces the estimated relations to 204M. This is still on the high side but I have read large quartics have a higher dup rate. |
|
![]() |
![]() |
![]() |
#1014 | |
"Alexander"
Nov 2008
The Alamo City
16318 Posts |
![]() Quote:
Last fiddled with by Happy5214 on 2022-04-08 at 21:08 Reason: Add |
|
![]() |
![]() |
![]() |
#1015 |
Just call me Henry
"David"
Sep 2007
Liverpool (GMT/BST)
37·163 Posts |
![]()
Factoring 1528152860898312226820507829734311038694803153043007 ^ 5 - 1 has reduced the proof for 13^4 to 2500 to a third of its previous size(15.6M stat_rec vs 46.4M stat_rec).
Currently have 7/15 of the forbidden primes to 2500. 3 or 4 are nearly there. I believe the first four (127, 19, 7, 11) are going to be the hard ones. |
![]() |
![]() |
![]() |
#1016 | |
"Alexander"
Nov 2008
The Alamo City
39916 Posts |
![]() Quote:
|
|
![]() |
![]() |
![]() |
#1017 |
Aug 2022
China
2016 Posts |
![]()
Trying to hit bound_on_m.txt with 900 curves @1e6. (In random order)
Found 7 factors out of first 24 composites, uploaded them to factordb, pretty satisfactory success rate. |
![]() |
![]() |
![]() |
#1018 | |
"Alexander"
Nov 2008
The Alamo City
92110 Posts |
![]() Quote:
Edit: Alternatively, I've attached the yafu input of what was left over from my run, which you can just use as stdin. Last fiddled with by Happy5214 on 2022-10-26 at 05:59 |
|
![]() |
![]() |
![]() |
#1019 |
Aug 2022
China
25 Posts |
![]()
Thanks for your status update, I will try to eliminate candidates using the file you uploaded.
|
![]() |
![]() |
![]() |
#1020 |
Just call me Henry
"David"
Sep 2007
Liverpool (GMT/BST)
37×163 Posts |
![]()
Does anyone have an automated way of checking for OPN factors from the factordb?
|
![]() |
![]() |
![]() |
#1022 |
Oct 2007
Manchester, UK
1,373 Posts |
![]()
I have found that factor db will sometimes show different factorisations depending if one looks up b^n-1 or (b^n-1)/(b-1). I assume that sometimes in the backend (b^n-1)/(b-1) is not always linked as a factor of b^n-1, or perhaps that changes to one page may take a while to propogate to another.
Since I noticed that I've always made sure to report factors to both pages to ensure that they aren't missed. |
![]() |
![]() |
![]() |
#1023 | |
Apr 2006
2×53 Posts |
![]()
The run to prove \(m\ge 10^{1000}\) finished without problems a few weeks ago.
Quote:
toto.sh comp produces the files comp_f containing the factors in checkfacts format and comp_n containing the remaining composites. toto.sh: Code:
#!/bin/bash oddfactors.pl $1 fhtml=$$_html furl=$$_url touch $1factors.html for i in $(cat $1factors.html | sed 's/<\/p>/X/g' | tr "X" "\n" | sed -e "s/<p>.*='//" -e "s/'.*//g") do wget $i -O $fhtml 2>/dev/null 1>&2 echo $(cat $fhtml | tr ">" "\n" | grep index.php? | grep -v show | head -2 | tail -1 | sed -e 's/.*="//' -e 's/"//') >> $furl echo -n "." done echo touch $furl for i in $(cat $furl) do wget factordb.com/$i -O $fhtml 2>/dev/null 1>&2 echo $(cat $fhtml | grep value | head -1 | sed -e 's/.*value="//' -e 's/">//') >> $$_factor.txt echo -n "." done echo rm $fhtml match $1 $$_factor.txt > $1_f rm $furl $1factors.html $$_factor.txt date Code:
#!/bin/sh #! -*-perl-*- eval 'exec perl -x -wS $0 ${1+"$@"}' if 0; use strict; use warnings; use LWP::Simple; use vars qw/$line @line $page $data $file/; open (IN, $ARGV[0]) || die " cannot open file"; open (LEFT,">${ARGV[0]}_n"); $file="$ARGV[0]factors.html"; open (OUT,">$file"); my $i=0; my $j=0; while (defined($line=<IN>)) { chomp $line; @line= split /\s/,$line; #print OUT "$line[2]\n"; $page="http://factordb.com/index.php?query=$line[2]"; $data=get($page); if ($data =~ m/\<td\>FF\<\/td\>/ || $data =~ m/\<td\>CF\<\/td\>/ ) { #print OUT "$line is factored!\n\t$page\n": print OUT "<p><a href='$page'>$line[0] $line[1] is factored!</a></p>"; $i++; } else { print LEFT "$line\n"; $j++; } } close IN; close OUT; if (-z $file) { print "No numbers factored\n" } else {print "Factored $i\nRemaining $j\n";} Last fiddled with by Pascal Ochem on 2022-10-26 at 20:25 |
|
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Passive Pascal | Xyzzy | GPU Computing | 1 | 2017-05-17 20:22 |
Tesla P100 — 5.4 DP TeraFLOPS — Pascal | Mark Rose | GPU Computing | 52 | 2016-07-02 12:11 |
Nvidia Pascal, a third of DP | firejuggler | GPU Computing | 12 | 2016-02-23 06:55 |
Calculating perfect numbers in Pascal | Elhueno | Homework Help | 5 | 2008-06-12 16:37 |
Factorization attempt to a c163 - a new Odd Perfect Number roadblock | jchein1 | Factoring | 30 | 2005-05-30 14:43 |