-
Notifications
You must be signed in to change notification settings - Fork 0
/
smooth_search.pl
122 lines (86 loc) · 2.22 KB
/
smooth_search.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
#!/usr/bin/perl
# Numbers that are both infinitary and noninfinitary harmonic numbers
# https://oeis.org/A348922
# Known terms:
# 45, 60, 54600, 257040, 1801800, 2789640, 4299750, 47297250, 1707259680, 4093362000
# a(7) > 10^10, if it exists. - Amiram Eldar, Nov 04 2021
# Equivalently, numbers n such that isigma(n) divides n*isigma_0(n) and nisigma(n) divides n*nisigma_0(n).
# Non-squarefree numbers n such that A049417(n) divides n*A037445(n) and A348271(n) divides n*A348341(n).
# See also:
# https://oeis.org/A247077
# The sequence also includes:
# 18779856480
# 44425017000
# 13594055202000
# 27188110404000
# 299069214444000
# 6824215711404000
use 5.020;
use warnings;
use experimental qw(signatures);
use Math::GMPz;
use ntheory qw(:all);
use Math::Sidef qw(isigma isigma0 nisigma nisigma0);
sub check_valuation ($n, $p) {
if ($p == 2) {
return valuation($n, $p) < 10;
}
if ($p == 3) {
return valuation($n, $p) < 12;
}
if ($p == 5) {
return valuation($n, $p) < 7;
}
if ($p == 7) {
return valuation($n, $p) < 7;
}
if ($p == 11) {
return valuation($n, $p) < 3;
}
($n % $p) != 0;
#valuation($n, $p) < 2;
}
sub smooth_numbers ($limit, $primes) {
my @h = (1);
foreach my $p (@$primes) {
say "Prime: $p";
foreach my $n (@h) {
if ($n * $p <= $limit and check_valuation($n, $p)) {
push @h, $n * $p;
}
}
}
return \@h;
}
sub usigma($n) {
vecprod(map { addint(powint($_->[0], $_->[1]), 1) } factor_exp($n));
}
sub isok ($n) {
is_square_free($n) && return;
(($n*isigma0($n)) % isigma($n)) == 0 or return;
my $t = nisigma($n);
$t == 0 and return;
(($n*nisigma0($n)) % $t) == 0 or return;
return 1;
}
my @smooth_primes;
foreach my $p (@{primes(4801)}) {
if ($p == 2) {
push @smooth_primes, $p;
next;
}
if (
is_smooth($p-1, 5) and
is_smooth($p+1, 7)
) {
push @smooth_primes, $p;
}
}
my $h = smooth_numbers(~0, \@smooth_primes);
say "\nGenerated: ", scalar(@$h), " numbers";
foreach my $n (@$h) {
if ($n > 1e10 and isok($n)) {
#if (isok($n)) {
say $n;
}
}