During solving another equation, I found equation $1+12k^2(k+1)=t^2$ has limited solution in $\mathbb Z$:
$(k, t)=(0,±1), (1, ±5), (-1, ±1), (4,±31), (6,±55)$
I found this to be true by Python up to $k=10^6$. Prove or disprove this analytically.
During solving another equation, I found equation $1+12k^2(k+1)=t^2$ has limited solution in $\mathbb Z$:
$(k, t)=(0,±1), (1, ±5), (-1, ±1), (4,±31), (6,±55)$
I found this to be true by Python up to $k=10^6$. Prove or disprove this analytically.
This is an elliptic curve. According to a theorem of Siegel, it has only finitely many integer points.
EDIT: The Weierstrass form of this curve is $$x^3 + y^2 - 48 x - 272 = 0 $$ where $x = -12 k - 4$ and $y = 12 t$. Note that integer $(k,t)$ imply integer $(x,y)$ but not vice versa. Sage gives me the integer points $(x,y)$:
Looking at the corresponding $(k,t)$ pairs, the only ones in integers are those you found.