I would like to show that $$ \int_{-1}^{1}P_{n}^{1}(x)P_{n'}^{0}(x)\frac{x}{\sqrt{1-x^{2}}}\,\mathrm dx = \begin{cases} -\frac{2n}{2n+1},&n=n'>0\\ -2,&n>n'\text{ and } n-n' \text{ even}\\ 0,&\text{otherwise.} \end{cases} $$ where $P_{n}^{m}(x)$ are the associated Legendre polynomials. One can easily see that this is the answer through inputting the following into Mathematica:
Table[Integrate[
LegendreP[n, 1, x] LegendreP[n1, x] x/Sqrt[1 - x^2], {x, -1,
1}], {n, 0, 10}, {n1, 0, 10}] // MatrixForm
However, I'm at a loss at how to go about proving it. I can't find it in any of the usual sources (e.g. DLMF, Gradshteyn and Rhzhik etc.), perhaps because it is not quite an orthogonality relation. Please can you help me? Writing it as $$ \int_{0}^{\pi}P_{n}^{1}(\cos(\theta))P_{n'}^{0}(\cos(\theta))\cos(\theta)d\theta $$ might help, but I'm not sure. Thanks!