-
Notifications
You must be signed in to change notification settings - Fork 33
/
count_of_squarefree_k-almost_primes.pl
89 lines (61 loc) · 2.45 KB
/
count_of_squarefree_k-almost_primes.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
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 15 March 2021
# https://github.com/trizen
# Count the number of squarefree k-almost primes <= n.
# See also:
# https://en.wikipedia.org/wiki/Almost_prime
=for comment
# PARI/GP program:
a(n,k) = my(N=10^n); (f(m, p, k, j=1)=my(s=sqrtnint(N\m, k), count=0); if(k==2, forprime(q=p, s, count += primepi(N\(m*q)) - j; j+=1); return(count)); forprime(q=p, s, count += f(m*q, q+1, k-1, j+1); j+=1); count); f(1, 2, k);
=cut
use 5.020;
use ntheory qw(:all);
use experimental qw(signatures);
sub squarefree_almost_prime_count ($n, $k) {
if ($k == 0) {
return (($n <= 0) ? 0 : 1);
}
if ($k == 1) {
return prime_count($n);
}
my $count = 0;
sub ($m, $p, $k, $j = 1) {
my $s = rootint(divint($n, $m), $k);
if ($k == 2) {
for (; $p <= $s ; $p = next_prime($p)) {
$count += prime_count(divint($n, mulint($m, $p))) - $j++;
}
return;
}
for (; $p <= $s ; ++$j) {
my $r = next_prime($p);
__SUB__->(mulint($m, $p), $r, $k - 1, $j + 1);
$p = $r;
}
}->(1, 2, $k);
return $count;
}
# Run some tests
foreach my $k (1 .. 7) {
my $upto = pn_primorial($k) + int(rand(1e5));
my $x = squarefree_almost_prime_count($upto, $k);
my $y = scalar grep { is_square_free($_) } @{almost_primes($k, $upto)};
say "Testing: $k with n = $upto -> $x";
$x == $y
or die "Error: $x != $y";
}
say '';
foreach my $k (1 .. 8) {
say("Count of squarefree $k-almost primes for 10^n: ",
join(', ', map { squarefree_almost_prime_count(10**$_, $k) } 0 .. 9));
}
__END__
Count of squarefree 1-almost primes for 10^n: 0, 4, 25, 168, 1229, 9592, 78498, 664579, 5761455, 50847534
Count of squarefree 2-almost primes for 10^n: 0, 2, 30, 288, 2600, 23313, 209867, 1903878, 17426029, 160785135
Count of squarefree 3-almost primes for 10^n: 0, 0, 5, 135, 1800, 19919, 206964, 2086746, 20710806, 203834084
Count of squarefree 4-almost primes for 10^n: 0, 0, 0, 16, 429, 7039, 92966, 1103888, 12364826, 133702610
Count of squarefree 5-almost primes for 10^n: 0, 0, 0, 0, 24, 910, 18387, 286758, 3884936, 48396263
Count of squarefree 6-almost primes for 10^n: 0, 0, 0, 0, 0, 20, 1235, 32396, 605939, 9446284
Count of squarefree 7-almost primes for 10^n: 0, 0, 0, 0, 0, 0, 8, 1044, 38186, 885674
Count of squarefree 8-almost primes for 10^n: 0, 0, 0, 0, 0, 0, 0, 1, 516, 29421