I am trying to figure out if a sequence $a_{n+1} = a_n - \frac{1}{a_n}$ is bounded, but I don't see how to approach the question. The behavior of the first million members seem erratic and the standard methods don't seem to apply.
What is the right way to find out if the sequence is bounded?
a0 = 0
a1 = 2
for i in range(108):
if i%105 == 0:
print(a1)
a0 = a1
a1 = a0-(1/a0)
Update
math.stackexchange.com/q/2226876/42969 doesnot answer the question definitively. tends to support the hypothesis
is not the same as proven to be
. Is there any progress on this topic?