-
Notifications
You must be signed in to change notification settings - Fork 0
/
carmichael_from_combinations_of_primes_recursive_mpz.pl
102 lines (72 loc) · 2.23 KB
/
carmichael_from_combinations_of_primes_recursive_mpz.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
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 17 March 2023
# https://github.com/trizen
# Generate Carmichael numbers from a given multiple.
# See also:
# https://trizenx.blogspot.com/2020/08/pseudoprimes-construction-methods-and.html
use 5.036;
use Math::GMPz;
#use ntheory qw(:all);
use Math::Sidef qw(:all);
use ntheory qw(vecall forcomb);
sub carmichael_from_multiple ($m, $callback, $reps = 1e4) {
my $t = Math::GMPz::Rmpz_init();
my $u = Math::GMPz::Rmpz_init();
my $v = Math::GMPz::Rmpz_init();
is_square_free($m) || return;
my $L = lambda($m);
$m = Math::GMPz->new("$m");
$L = Math::GMPz->new("$L");
Math::GMPz::Rmpz_invert($v, $m, $L) || return;
for (my $p = Math::GMPz::Rmpz_init_set($v) ; --$reps > 0 ; Math::GMPz::Rmpz_add($p, $p, $L)) {
$p > 1 or next;
Math::GMPz::Rmpz_gcd($t, $m, $p);
Math::GMPz::Rmpz_cmp_ui($t, 1) == 0 or next;
is_square_free($p) || next;
Math::GMPz::Rmpz_mul($v, $m, $p);
Math::GMPz::Rmpz_sub_ui($u, $v, 1);
Math::GMPz::Rmpz_set_str($t, lambda($p), 10);
if (Math::GMPz::Rmpz_divisible_p($u, $t)) {
$callback->(Math::GMPz::Rmpz_init_set($v));
}
}
}
my %seen;
my @primes;
#foreach my $p (almost_primes(2, 10000, 100000)) {
while (<>) {
my $p = (split(' ', $_))[-1];
$p =~ /^\d+\z/ or next;
#$p > 2000 or next;
# log($p)/log(10) > 100 or next;
next if $seen{$p}++;
is_square_free($p) || next;
$p = Math::GMPz->new("$p");
push @primes, $p;
}
#foreach my $p (@primes) {
forcomb {
my $p = Math::GMPz->new(join '', prod(@primes[@_]));
if (lambda($p) < iroot($p, 3)->sqr) {
say "# Sieving with p = $p";
my @list = ($p);
while (@list) {
my $m = shift(@list);
$seen{$m} = 1;
carmichael_from_multiple(
$m,
sub ($n) {
if ($n > $m) {
if ($n > ~0) {
say $n;
}
if (!$seen{$n}++) {
push @list, $n;
}
}
}
);
}
}
} scalar(@primes), 2;