I have a sequence knowing that $a_1=15$, $a_{n+1} = a_n + \sqrt{2a_{n+1}-a_n}$. I want to find some the first terms. I tried by my hand
k := 15;
Solve[x == k + Sqrt[2 x - k], x]
{{x -> 20}}
k := 20;
Solve[x == k + Sqrt[2 x - k], x]
{{x -> 21 + Sqrt[21]}}
I am trying to find a general formulas. I tried
ClearAll["Global`*"];
RSolve[{a[x, n + 1] == a[x, n] + Sqrt[ 2 a[x, n + 1] - a[x, n] ],
a[x, 1] == 15}, a[x, n], n] // FullSimplify
{{a[x, n] -> (-6 + n) (-4 + n)}, {a[x, n] -> (2 + n) (4 + n)}}
The out put, e.g $(2 + n) (4 + n)$ is incorrect, I think that.
How to find some first terms of the sequence $a_1=15$, $a_{n+1} = a_n + \sqrt{2a_{n+1}-a_n}$?