Find the determinant of order $n+1$:
$D_n=\begin{vmatrix} 0&1&0&0&\ldots&0&0\\ 1&0&2&0&\ldots&0&0\\ 0&2&0&3&\ldots&0&0\\ 0&0&3&0&\ldots&0&0\\ \vdots &\vdots &\vdots &\vdots &\ddots &\vdots &\vdots\\ 0&0&0&0&\ldots&0&n\\ 0&0&0&0&\ldots&n&0 \end{vmatrix}$
I've tried developing it using Laplace's method, adding rows/columns, but it wasn't very helpful. Please give me some hints, thank you!
This is a case of a tridiagonal determinant. Expanding it along the last row (or column) you can prove the recurrence relation: $$D_n=-n^2D_{n-2}.$$ From this relation, you can deduce that $$D_n=\begin{cases}(-1)^{\tfrac{n+1}2}(1\cdot 3\cdot \dotsm \cdot n)^2&\text{if $n$ is odd,}\\0&\text{if $n$ is even.}\end{cases}$$