I have this problem which states that:
$$a_n = \frac{a_{n-1}}{4}\left(1-\frac{63}{a_{n-1}^3+7}\right),\text{ and }a_1=c$$
I have tried numerous ways to solve it by hand, as well as Wolfram Mathematica's RSolve function, with no success. The following is the command in Wolfram Mathematica:
RSolve[{a[n] == a[n-1]/4*(1-63/((a[n-1])^3+7)), a[1] == 1}, a[n], n]
I cannot get the closed form for $a_n$. Could anybody help please?