Question: Finding the general formula for the sequence defined by f(1) = 15 and f(n+1) = f(n)  + sqrt(2*f(n+1)-f(n))

My code
restart;
reqn:=f(n+1) = f(n)  + sqrt(2*f(n+1)-f(n)):
rsolve({reqn, f(1) = 15},f(n));

I can not get the answer. How can I get the answer?

Please Wait...