-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_williams_number_from_prime_factors.pl
168 lines (119 loc) · 4.04 KB
/
generate_williams_number_from_prime_factors.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 27 August 2022
# https://github.com/trizen
# Generate all the Lucas-Carmichael numbers with n prime factors in a given range [A,B], using a given list of prime factors. (not in sorted order)
# See also:
# https://en.wikipedia.org/wiki/Almost_prime
# https://trizenx.blogspot.com/2020/08/pseudoprimes-construction-methods-and.html
use 5.020;
use warnings;
use ntheory qw(:all);
use experimental qw(signatures);
use Math::GMPz;
sub divceil ($x, $y) { # ceil(x/y)
my $q = ($x / $y);
($q * $y == $x) ? $q : ($q + 1);
}
sub carmichael_numbers_in_range ($A, $k, $primes, $callback) {
$A = vecmax($A, pn_primorial($k));
$A = Math::GMPz->new("$A");
my $end = $#{$primes};
sub ($m, $lambda1, $lambda2, $j, $k) {
#say "$m -- $lambda1 -- $lambda2 -- $j -- $k";
#my $y = rootint($B / $m, $k);
if ($k == 1) {
#say "$A -- $m";
my $x = divceil($A, $m);
if ($primes->[-1] < $x) {
return;
}
foreach my $i ($j .. $end) {
my $p = $primes->[$i];
#last if ($p > $y);
next if ($p < $x);
my $t = $m * $p;
if (($t - 1) % $lambda1 == 0 and ($t - 1) % ($p - 1) == 0) {
say $t;
if (($t + 1) % $lambda2 == 0 and ($t + 1) % ($p + 1) == 0) {
$callback->($t);
}
}
}
return;
}
foreach my $i ($j .. $end) {
my $p = $primes->[$i];
#last if ($p > $y);
my $L1 = lcm($lambda1, $p - 1);
gcd($L1, $m) == 1 or next;
my $L2 = lcm($lambda2, $p + 1);
gcd($L2, $m) == 1 or next;
# gcd($m*$p, divisor_sum($m*$p)) == 1 or die "$m*$p: not Lucas-cyclic";
#~ my $t = $m * $p;
#~ my $u = divceil($A, $t);
#my $v = $B / $t;
#if ($u <= $v) {
__SUB__->($m * $p, $L1, $L2, $i + 1, $k - 1);
#}
}
}
->(Math::GMPz->new(1), 1, 1, 0, $k);
}
sub is_pomerance_prime ($p) {
# p == 3 (mod 8) and (5/p) = -1
# is_congruent(p, 3, 8) && (kronecker(5, p) == -1) &&
# (p-1)/2 and (p+1)/4 are squarefree
# is_squarefree((p-1)/2) && is_squarefree((p+1)/4) &&
# all factors q of (p-1)/2 are q == 1 (mod 4)
# factor((p-1)/2).all { |q|
# is_congruent(q, 1, 4)
# } &&
# all factors q of (p+1)/4 are q == 3 (mod 4)
# factor((p+1)/4).all {|q|
# is_congruent(q, 3, 4)
# }
# p == 3 (mod 8)
$p % 8 == 3 or return;
# (5/p) = -1
kronecker(5, $p) == -1 or return;
# (p-1)/2 and (p+1)/4 are squarefree
(is_square_free(($p - 1) >> 1) and is_square_free(($p + 1) >> 2)) || return;
# all prime factors q of (p-1)/2 are q == 1 (mod 4)
(vecall { $_ % 4 == 1 } factor(($p - 1) >> 1)) || return;
# all prime factors q of (p+1)/4 are q == 3 (mod 4)
(vecall { $_ % 4 == 3 } factor(($p + 1) >> 2)) || return;
return 1;
}
use IO::Handle;
open my $fh, '>>', 'carmichael_with_many_factors_10.txt';
$fh->autoflush(1);
my @primes_620;
while (<>) {
next if /^#/;
my $p = (split(' '))[-1];
$p = Math::GMPz->new($p) if ($p > ~0);
#is_pomerance_prime($p) || next;
is_smooth($p+1, 300) || next;
is_smooth($p-1, 300) || next;
#$p > 2**64 or next;
push @primes_620, $p;
}
# (p^2 - 1)/2 == 0 (mod 12)
my @primes = grep { (($_ * $_ - 1) >> 1) % 12 == 0 } @primes_620;
#say "@primes";
# All primes must be congruent to each other mod 12.
my %groups;
foreach my $p (@primes) {
push @{$groups{$p % 12}}, $p;
}
my @groups = values %groups;
foreach my $k ((5..scalar(@primes_620))) {
next if ($k > scalar(@primes));
$k % 2 == 1 or next;
foreach my $group (@groups) {
next if ($k > scalar(@$group));
say "# k = $k -- primes: ", scalar(@$group);
carmichael_numbers_in_range(Math::GMPz->new(~0), $k, $group, sub ($n) { say $n; say $fh $n; });
}
}