-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP64.jl
65 lines (56 loc) · 1.2 KB
/
P64.jl
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
function continuedfraction(x::Real)::Tuple{Int, Real}
i=floor(Int, x)
r=1/(x-i) #remain
return i, r
end
# function squareroots(N::Int, lim::Int=10)::Vector
# n0,x0=continuedfraction(sqrt(big(N)))
# expansion=zeros(Int,lim)
# expansion[1]=n0
# x=copy(x0)
# for i in 2:lim
# n,x=continuedfraction(x)
# expansion[i]=n
# if abs(x-x0)<1e-5
# break
# end
# end
# return expansion
# end
# function periodcount(expansion::Vector{<:Real})::Int
# return sum([i!=0 for i in expansion])-1
# end
function periodcount(N::Int,lim::Int=10000)::Int
n0,x0=continuedfraction(sqrt(big(N)))
@assert x0 isa BigFloat
x=copy(x0)
count=0
for i in 1:lim
n,x=continuedfraction(x)
count+=1
if abs(x-x0)<1e-3
break
end
if i==lim
println(N)
end
end
return count
end
function nonsquared(N::Int)
n=floor(Int, sqrt(N))
mask=ones(Bool,N)
for i in 1:n
mask[i^2]=false
end
return collect(1:N)[mask]
end
N=10000
lim=500
list=nonsquared(N)
M=length(list)
periods=zeros(Int,M)
for i in 1:M
periods[i]=periodcount(list[i])
end
println(periods)