How to solve this puzzle? Follow this link
2026-04-30 09:02:25.1777539745
Riddle: which is the next bigger number?
122 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
The subsequent smallest value of $x$ is $1680$.
We need $x$ such that $$x+1 = m^2 \text{ and }x/2+1 = n^2$$ Eliminating $x$, we need $m$ and $n$ such that $$m^2 + 1 = 2n^2 \text{ or }m^2-2n^2=-1$$ This is an example of Pell's equation, see here and here. The approach is to guess the smallest positive solution, which in this case is $(n_1,m_1)=(1,1)$. All the remaining solutions are given by the Brahmagupta's identity, i.e., $$(m_{k+1},n_{k+1}) = (3m_k+4n_k,2m_k+3n_k)$$ This gives us that $(m_2,n_2) = (7,5)$, i.e., $x=7^2-1 = 48$.
Next, we obtain $(m_3,n_3) = (3\cdot7+4\cdot5,2\cdot7+3\cdot5) = (41,29)$, which gives us that $x=41^2-1 = 1680$.