Problem
When reading an advanced text in numerical computing, I encountered the following claim
If a symmetric matrix $\mathbf{A}\in \mathbb{R}^{n\times n}$ has entries $\mathbf{A}_{ij}=i(n-j+1)$ for $j \geq i$, then it is positive semidefinite.
I verified this numerically using Julia and it seems to be a valid claim. However, I could not see why this is true theoretically. Specially, I do not know how to convert this to the following three conditions for positive-semidefiniteness
Could anyone help me, thank you in advance.
Let $L$ be the lower triangular matrix of $1$s (with all entries above the main diagonal equal to $0$). Sangchul Lee has observed (in a previous version of their answer) that $A=(n+1)LL^T-uu^T$, where $u=(1,2,\ldots,n)^T$. Thus we may further rewrite $A$ as $L\left((n+1)I-ee^T\right)L^T$, where $e=(1,1,\ldots,1)^T$ is the all-one vector. Hence $A$ is positive definite, because it is congruent to the positive definite matrix $(n+1)I-ee^T$.