Let $n$ be a positive integer, and let $M$ be an integral, symmetric, nonsingular matrix. As $M$ is nonsingular, there exists an $LDL^T$ decomposition such that $D = (d_j)$ is diagonal and $L=(\ell_{ij})_{i < j}$ is a unit lower triangular matrix. (We have adopted the convention that $i < j$ for notational convenience.)
For $j=1, \ldots, n$ we let $M_j$ denote the $j^{th}$ leading principal submatrix of $M$. Similarly, we let $m_j = \det(M_j)$ denote the $j^{th}$ leading principal minor of $M$. For convenience, we set $m_0 = 1$. For both $D$ and $L$ we let $D_j$ and $L_j$ denote the $j^{th}$ leading principal submatrix of these matrices, respectively.
Further, for $i < j$, we let $M_i[i,j]$ denote the $i^{th}$ leading principal submatrix of the matrix obtained by interchanging columns $i$ and $j$ in $M$.
For example, if $M=(t_{ij})$ then $M_2[2,3] = \left(\begin{array}{cc} t_{11} & t_{13}\\ t_{12} & t_{23}\end{array}\right)$ (where due to symmetry the matrix notation pertains only to the upper triangular entries.)
It is known that $L_j D_j (L_j)^T = M_j$. (See, e.g: http://heim.ifi.uio.no/~tom/luslides.pdf - slide 14.)
Hence, we may deduce that for $j=1, \ldots, n$; $\displaystyle d_j = \frac{m_j}{m_{j-1}}$.
In order to determine the $\ell_{ij}$'s, we may use forward substitution, Cholesky decomposition, etc...
However, I seem to have stumbled upon a more explicit determination which I cannot find a resource for, and which I cannot prove the general case.
I claim that, for $i < j$, we have that: $\displaystyle \ell_{ij} = \frac{\det(M_i[i,j])}{m_i}$.
Here is my approach for proving this:
Let $M=(t_{ij})$.
For $i < j$, consider the matrix \begin{eqnarray*} LD_i[i,j] = \left(\begin{array}{cccc} d_1 & 0 & \cdots & t_{1j}\\ \vdots & \ddots & 0 & \vdots\\ \vdots & & d_{i-1} & t_{i-1 j}\\ d_1 \ell_{1i} & \cdots & d_{i-1}\ell_{i-1 i} & t_{ij}\end{array}\right), \end{eqnarray*} that is, the $i^{th}$ leading principal submatrix of the matrix $LD$, where the $i^{th}$ column of $LD$ has been interchanged with the $j^{th}$ column from $M$. Hence, from Cramer's rule, and $(LD)L^T = M$ we deduce that \begin{eqnarray*} \ell_{ij} = \frac{\det(LD_i[i,j])}{m_j}. \end{eqnarray*} Hence, it remains to show that $\displaystyle \det(LD_i[i,j]) = \det(M_i[i,j])$. We may take the determinant of each of these matrices by expanding along the $i^{th}$ column. As the $i^{th}$ column is equal in both matrices, it suffices to show that for $1 \leq k \leq i$, the $(k,i)^{th}$ minor of each matrix is the same. As we are taking minors with respect to the $i^{th}$ column, it is also sufficient to show that $(k,i)^{th}$ minor of $LD_i$ is the same as the $(k,i)^{th}$ minor of $M_i$.
--
I'm not too sure how to proceed from here. I checked that this works manually up to a 4x4 matrix. Proving it inductively doesn't seem to work, as there's a bunch of cancellations that don't scale properly.
I'm quite confident my claim will hold, but I'm unable to find a proper resource which shows this. This claim results due to my research into quadratic forms, and most of the quadratic form literature is concerned with the spectral decomposition of $M$, rather than an $LDL^T$ decomposition.
Any source or avenue for proving my claim would be greatly appreciated! (Or a counter-example would work.)