I need to upper bound the following recurrence
$$f(n+1)=f(n)\times\left( 1-\frac{f(n)}{1-f(n)} \right), f(1)<\frac{1}{4} $$
Question I would like a strictly decreasing function $g(n)$ such that $f(n) < g(n)$.
I know that $0<f(n)<\frac{1}{4}$ is strictly monotonically decreasing, and that a limit exists. So far, I can show that $f(n\log(n))\leq \frac{1}{n}$, but this was derived with simple methods, and plotting the function shows that a better bound likely exists.
Motivation I have an algorithm that finds a graph matching with "quality" $f(n)$ after $n$ iterations, where smaller is better, and I wish to know how many phases are needed to achieve a given quality.