-
Notifications
You must be signed in to change notification settings - Fork 0
/
abundant_fermat_pseudoprimes_cached.pl
executable file
·64 lines (48 loc) · 1.5 KB
/
abundant_fermat_pseudoprimes_cached.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/perl
# a(n) = smallest pseudoprime to base 2 with n prime factors.
# https://oeis.org/A007011
# Several abundant Fermat pseudoprimes to base 2:
# 898943937249247967890084629421065
# 222042825169546323981793629414604065
# 2596282479202818734176082185090403265
# 12796625128232187655293894634808130945
# 3470207934739664512679701940114447720865
use 5.020;
use strict;
use warnings;
use Storable;
use Math::GMPz;
use ntheory qw(:all);
use Math::Prime::Util::GMP;
use experimental qw(signatures);
use POSIX qw(ULONG_MAX);
my $storable_file = "cache/factors-fermat.storable";
my $fermat = retrieve($storable_file);
sub my_sigma ($factors) { # assumes n is squarefree
state $t = Math::GMPz::Rmpz_init();
state $u = Math::GMPz::Rmpz_init();
Math::GMPz::Rmpz_set_ui($t, 1);
foreach my $p (@$factors) {
if ($p < ULONG_MAX) {
Math::GMPz::Rmpz_mul_ui($t, $t, $p + 1);
}
else {
Math::GMPz::Rmpz_set_str($u, $p, 10);
Math::GMPz::Rmpz_add_ui($u, $u, 1);
Math::GMPz::Rmpz_mul($t, $t, $u);
}
}
return $t;
}
my $t = Math::GMPz::Rmpz_init();
while (my ($key, $value) = each %$fermat) {
Math::Prime::Util::GMP::modint($key, 5) == 0
or Math::Prime::Util::GMP::modint($key, 3) == 0
or next;
my @factors = split(' ', $value);
Math::GMPz::Rmpz_set_str($t, $key, 10);
Math::GMPz::Rmpz_mul_2exp($t, $t, 1);
if (my_sigma(\@factors) >= $t) {
say $key;
}
}