-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfermat_from_divisors.pl
executable file
·50 lines (35 loc) · 1.01 KB
/
fermat_from_divisors.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/perl
# Generate base-2 Fermat pseudoprimes from the divisors of other numbers.
use 5.020;
use strict;
use warnings;
use ntheory qw(divisor_sum);
use Math::Prime::Util::GMP;
use Math::AnyNum qw(is_smooth is_rough);
my %seen;
#my $sigma0_limit = 2**20;
my $sigma0_limit = 2**17;
while (<>) {
next if /^\h*#/;
/\S/ or next;
my $n = (split(' ', $_))[-1];
$n =~ /^[0-9]+\z/ || next;
$n > ~0 or next;
#length($n) > 45 or next;
#$n = Math::GMPz->new($n);
#$n % (3*5*17*23*29) == 0 or next;
is_rough($n, 1e5) && next;
if (length($n) > 45) {
is_smooth($n, 1e7) || next;
}
divisor_sum($n, 0) <= $sigma0_limit or next;
#divisor_sum($n, 0) <= 2**17 and next;
$seen{$n} = 1;
foreach my $d (Math::Prime::Util::GMP::divisors($n)) {
$d > ~0 or next;
next if exists $seen{$d};
if (Math::Prime::Util::GMP::is_pseudoprime($d, 2) and !Math::Prime::Util::GMP::is_provable_prime($d)) {
say $d if !$seen{$d}++;
}
}
}