-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsquarefree_almost_primes_in_range.jl
More file actions
63 lines (44 loc) · 1.15 KB
/
squarefree_almost_primes_in_range.jl
File metadata and controls
63 lines (44 loc) · 1.15 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
#!/usr/bin/julia
# Generate squarefree k-almost primes in range [A,B].
# See also:
# https://en.wikipedia.org/wiki/Almost_prime
using Primes
const BIG = false # true to use big integers
function big_prod(arr)
BIG || return prod(arr)
r = big"1"
for n in (arr)
r *= n
end
return r
end
function squarefree_almost_primes_in_range(A, B, n::Int64)
A = max(A, big_prod(primes(prime(n))))
F = function(m, lo::Int64, j::Int64)
lst = []
hi = round(Int64, fld(B, m)^(1/j))
if (lo > hi)
return lst
end
if (j == 1)
lo = round(Int64, max(lo, cld(A, m)))
if (lo > hi)
return lst
end
for q in (primes(lo, hi))
push!(lst, m*q)
end
else
for q in (primes(lo, hi))
lst = vcat(lst, F(m*q, q+1, j-1))
end
end
return lst
end
return sort(F((BIG ? big"1" : 1),2,n))
end
# Generate squarefree 5-almost in the range [3000, 10000]
k = 5
from = 3000
upto = 10000
println(squarefree_almost_primes_in_range(from, upto, k))