-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprog.sf
46 lines (31 loc) · 1.33 KB
/
prog.sf
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
#!/usr/bin/ruby
# Smallest Zuckerman number (A007602) with exactly n distinct prime factors.
# https://oeis.org/A359961
# Known terms:
# 1, 2, 6, 132, 3276, 27132, 1117116, 111914712
# New terms:
# a(8) = 6111417312
# a(9) = 1113117121116
#`( PARI/GP program:
omega_polygonals(A, B, n) = A=max(A, vecprod(primes(n))); (f(m, p, j) = my(list=List()); forprime(q=p, sqrtnint(B\m, j), my(v=m*q, r=nextprime(q+1)); while(v <= B, if(j==1, my(dp=vecprod(digits(v))); if(v>=A && dp != 0 && v%dp == 0, listput(list, v)), if(v*r <= B, list=concat(list, f(v, r, j-1)))); v *= q)); list); vecsort(Vec(f(1, 2, n)));
a(n) = if(n==0, return(1)); my(x=vecprod(primes(n)), y=2*x); while(1, my(v=omega_polygonals(x, y, n)); if(#v >= 1, return(v[1])); x=y+1; y=2*x); \\ ~~~~
)
func upper_bound(n, from = 2, upto = 2*from) {
say "\n:: Searching an upper-bound for a(#{n})\n"
loop {
var count = n.omega_prime_count(from, upto)
if (count > 0) {
say "Sieving range: [#{from}, #{upto}]"
say "This range contains: #{count.commify} elements\n"
n.omega_primes_each(from, upto, {|v|
if (v.is_div(v.digits.prod)) {
say "a(#{n}) = #{v}"
return v
}
})
}
from = upto+1
upto *= 2
}
}
upper_bound(7)