-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquarefree_omega_palindromes.pl
129 lines (99 loc) · 3.51 KB
/
squarefree_omega_palindromes.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
123
124
125
126
127
128
129
#!/usr/bin/perl
# Smallest squarefree palindrome with exactly n distinct prime factors.
# https://oeis.org/A046399
# Known terms:
# 1, 2, 6, 66, 858, 6006, 222222, 22444422, 244868442, 6434774346, 438024420834, 50146955964105, 2415957997595142, 495677121121776594, 22181673755737618122, 8789941164994611499878
# Corrected term:
# a(15) = 5521159517777159511255
# New term found by Michael S. Branicky:
# a(16) = 477552751050050157255774
# Lower-bounds:
# a(17) > 252020044615415406440021243
# a(17) > 252020044615424516440020252
# Timings:
# a(12) is found in 0.2 seconds
# a(13) is found in 6.5 seconds
# a(14) is found in 9.7 seconds
# a(15) is found in 17 minutes
# While searching for a(17), it took 9 hours to check the range [63005011153853239757078527, 126010022307706479514157054].
# While searching for a(17), it took 33 hours to check the range [126010022307707703220010621, 252020044615415406440021243]
# Tried to sieve the range [252020044615424516440020252, 282020044615424516440020282], but the program didn't finish after 8 hours... (I had to stop the program after 8 hours)
use 5.020;
use ntheory qw(:all);
use experimental qw(signatures);
use Math::GMPz;
sub squarefree_omega_palindromes ($A, $B, $k, $callback) {
$A = vecmax($A, pn_primorial($k));
$A = Math::GMPz->new("$A");
my $u = Math::GMPz::Rmpz_init();
my $v = Math::GMPz::Rmpz_init();
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;
}
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)}) {
Math::GMPz::Rmpz_mul_ui($v, $m, $p);
my $s = Math::GMPz::Rmpz_get_str($v, 10);
if ($s eq reverse($s)) {
my $r = Math::GMPz::Rmpz_init_set($v);
say("Found upper-bound: ", $r);
$B = $r if ($r < $B);
$callback->($r);
}
}
return;
}
my $z = Math::GMPz::Rmpz_init();
foreach my $p (@{primes($lo, $hi)}) {
if ($p == 5 and Math::GMPz::Rmpz_even_p($m)) {
## last digit can't be zero
}
else {
Math::GMPz::Rmpz_mul_ui($z, $m, $p);
__SUB__->($z, $p+1, $k-1);
}
}
}->(Math::GMPz->new(1), 2, $k);
}
sub a($n) {
if ($n == 0) {
return 1;
}
#my $x = Math::GMPz->new(pn_primorial($n));
my $x = Math::GMPz->new("252020044615424516440020252");
#my $y = (5*$x)>>2;
my $y = Math::GMPz->new("282020044615424516440020282");
while (1) {
say("Sieving range: [$x, $y]");
my @v;
squarefree_omega_palindromes($x, $y, $n, sub ($k) {
push @v, $k;
});
@v = sort { $a <=> $b } @v;
if (scalar(@v) > 0) {
return $v[0];
}
$x = $y+1;
$y = (5*$x)>>2;
}
}
foreach my $n (17) {
say "a($n) = ", a($n);
}