How do we solve the recurrence relation $a_{n+1}=\frac{2a_n^2}{1-2a_n^2}$?
I found this problem on page 56 of Carl M. Bender and Steven A. Orszag's book Advanced Mathematical Methods for Scientists and Engineers, in the section that deals with nonlinear difference equations.
I tried using the substitution $b_n=\frac{1}{2a_n}$ to get $b_{n+1}=b_n^2-\frac12$. I did some searching here and found that there does not seem to be a (known) closed-form solution to this quadratic map.
In this section of the book, the author only mentioned a few examples of solving nonlinear difference equations using substitutions and generating functions, and does not mention anything about quadratic maps, so I assume this problem can be solved by appropriate substitutions.
Could you give me some hints? The solution can involve summation, etc., if necessary.