-
Notifications
You must be signed in to change notification settings - Fork 33
/
squarefree_almost_primes_in_range_mpz.pl
90 lines (63 loc) · 2.1 KB
/
squarefree_almost_primes_in_range_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
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 10 March 2021
# Edit: 04 April 2024
# https://github.com/trizen
# Generate all the squarefree k-almost prime numbers in range [A,B].
# See also:
# https://en.wikipedia.org/wiki/Almost_prime
use 5.036;
use ntheory qw(:all);
use Math::GMPz;
sub squarefree_almost_primes ($A, $B, $k) {
$A = vecmax($A, pn_primorial($k));
$A = Math::GMPz->new("$A");
$B = Math::GMPz->new("$B");
my $u = Math::GMPz::Rmpz_init();
my @values = sub ($m, $lo, $k) {
Math::GMPz::Rmpz_tdiv_q($u, $B, $m);
Math::GMPz::Rmpz_root($u, $u, $k);
my $hi = Math::GMPz::Rmpz_get_ui($u);
if ($lo > $hi) {
return;
}
my @lst;
if ($k == 1) {
Math::GMPz::Rmpz_cdiv_q($u, $A, $m);
if (Math::GMPz::Rmpz_fits_ulong_p($u)) {
$lo = vecmax($lo, Math::GMPz::Rmpz_get_ui($u));
}
elsif (Math::GMPz::Rmpz_cmp_ui($u, $lo) > 0) {
if (Math::GMPz::Rmpz_cmp_ui($u, $hi) > 0) {
return;
}
$lo = Math::GMPz::Rmpz_get_ui($u);
}
if ($lo > $hi) {
return;
}
foreach my $p (@{primes($lo, $hi)}) {
my $v = Math::GMPz::Rmpz_init();
Math::GMPz::Rmpz_mul_ui($v, $m, $p);
push @lst, $v;
}
return @lst;
}
my $z = Math::GMPz::Rmpz_init();
foreach my $p (@{primes($lo, $hi)}) {
Math::GMPz::Rmpz_mul_ui($z, $m, $p);
push @lst, __SUB__->($z, $p + 1, $k - 1);
}
return @lst;
}
->(Math::GMPz->new(1), 2, $k);
sort { Math::GMPz::Rmpz_cmp($a, $b) } @values;
}
# Generate squarefree 5-almost primes in the range [3000, 10000]
my $k = 5;
my $from = 3000;
my $upto = 10000;
my @arr = squarefree_almost_primes($from, $upto, $k);
my @test = grep { is_almost_prime($k, $_) && is_square_free($_) } $from .. $upto; # just for testing
join(' ', @arr) eq join(' ', @test) or die "Error: not equal!";
say join(', ', @arr);