As you know this is Fibonacci sequence:
$0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, \ldots$
As I noticed if you multiply $T_{n-1}$ and $T_{n+1}$ from Fibonacci numbers, you almost always get $(T_{n})^2 \pm 1$. for example:
$2 \times 5 = 3^2 + 1$
$3 \times 8 = 5^2 - 1$
$5 \times 13 = 8^2 + 1$
$13 \times 34 = 21^2 + 1$
So I was wondering, is there any algebraic proof for this?