$x(0)=1$
$x(1)=41 $
$x(n+2)=3x(n)+\sqrt{8(x(n)^2+x(n+1)^2)}$,
$n\geq0 $ prove that the elements are natural numbers.
The solution: Ax(0)+Bx(1)+Cx(2)=x(3) ; Ax(1)+Bx(2)+Cx(3)=x(4); Ax(2)+Bx(3)+C*x(4)=x(5); You can calculate A,B,C - and these are natural numbers. The biggest problem was that from first shape i thought that it is just second-degree recursion. Thank you your answer, I hope this solution is good.