So on my exam I got a True/False question that asked the following:
For any $n\in\mathbb N$, compute the determinant of the matrix
\begin{bmatrix} 1&1&1&\cdots&1 \\1&1/2&1/2&\cdots&1/2 \\1&1/2&1/3&\cdots&1/3 \\\vdots&\vdots&\vdots&\ddots&\vdots \\1&1/2&1/3&\cdots&1/n \end{bmatrix}
This is the $n\times n$ matrix whose $jk$-th entry is $1/\min\{j,k\}$.
I recognize there has to be some formula that makes calculating the determinant easier, but I'm confused as to what it is.
For any given $n\in\Bbb{N}$ denote the matrix by $A_n$. For $n\geq 2$, applying Laplace expansion along the last row and starting at the bottom right (the entry $\frac{1}{n}$) an working right to left yields $$\det A_n=\frac{1}{n}\det A_{n-1}-\frac{1}{n-1}\det A_{n-1}=-\frac{1}{n(n-1)}\det A_{n-1},$$ because the subdeterminants at the coefficients $\frac{1}{1}$ through $\frac{1}{n-2}$ are all zero; removing the $k$-th column makes the rows $k-1$, $k$ and $k+1$ linearly dependent. Of course $\det A_1=1$ so $$\det A_n=(-1)^{n+1}\frac{1}{n!(n-1)!}=(-1)^{n+1}\frac{n}{(n!)^2}.$$