-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path521 Smallest prime factor.pl
More file actions
100 lines (73 loc) · 1.83 KB
/
521 Smallest prime factor.pl
File metadata and controls
100 lines (73 loc) · 1.83 KB
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
#!/usr/bin/perl
# Daniel "Trizen" Șuteu
# Date: 14 March 2020
# https://github.com/trizen
# Smallest prime factor
# https://projecteuler.net/problem=521
# For each prime p < sqrt(n), we count how many integers k <= n have lpf(k) = p.
# We have G(n,p) = number of integers k <= n such that lpf(k) = p.
# G(n,p) can be evaluated recursively over primes q < p.
# There are t = floor(n/p) integers <= n that are divisible by p.
# From t we subtract the number integers that are divisible by smaller primes than p.
# The sum of the primes is p * G(n,p).
# When G(n,p) = 1, then G(n,p+r) = 1 for all r >= 1.
# Runtime: 6 min, 24 sec
use 5.020;
use integer;
use ntheory qw(:all);
use experimental qw(signatures);
my %cache;
my $MOD = 1e9;
sub G ($n, $p) {
if ($p > sqrt($n)) {
return 1;
}
if ($p == 2) {
return ($n >> 1);
}
if ($p == 3) {
my $t = $n / 3;
return ($t - ($t >> 1));
}
my $key = "$n $p";
if (exists $cache{$key}) {
return $cache{$key};
}
my $u = 0;
my $t = $n / $p;
for (my $q = 2 ; $q < $p ; $q = next_prime($q)) {
my $v = __SUB__->($t - ($t % $q), $q);
if ($v == 1) {
$u += prime_count($q, $p - 1);
last;
}
else {
$u += $v;
}
}
if ($n < 1e7) {
$cache{$key} = $t - $u;
}
$t - $u;
}
sub S($n) {
my $sum = 0;
my $s = sqrtint($n);
forprimes {
$sum += mulmod($_, G($n, $_), $MOD);
} $s;
addmod($sum, sum_primes(next_prime($s), $n) % $MOD, $MOD);
}
say S(1e12);
__END__
S(10^1) = 28
S(10^2) = 1257
S(10^3) = 79189
S(10^4) = 5786451
S(10^5) = 455298741
S(10^6) = 37568404989
S(10^7) = 3203714961609
S(10^8) = 279218813374515
S(10^9) = 24739731010688477
S(10^10) = 2220827932427240957
S(10^11) = 201467219561892846337