Consider the square $n \times n$ matrix $A_n$ with entries $u^{|i-j|} - u^{i+j}$ where $u \in (0, 1)$.
Is it true that $A$ is positive semidefinite?
In the case $n = 1$, we have $A_1 = 1-u^2 \geq 0$.
For the case $n = 2$, we have $A_2 = (1 - u^2)\begin{pmatrix} 1 & u \\ u & 1+u^2 \end{pmatrix}$.
We can look at a quadratic form to see it is again positive semidefinite: $$\frac{(x, y)^T A_2 (x, y)}{1-u^2} = x^2 + (1 +u^2)y^2 + 2xyu \geq x^2 + u^2 y^2 + 2xyu = (x + uy)^2 \geq 0. $$
I can't tell how to generalize this to $n \geq 3$. Perhaps there is a better way establish the claim? For instance, it suffices (by induction) to prove that $A_n$ has positive determinant, but this also seems a little tricky.
$A_n$ is positive-definite because it has a Cholesky decomposition (see proposition here) :
$$A_n=C_nC_n^T$$
(product of a lower triangular matrix by its transpose)
Precisely :
$$A_n=\underbrace{\color{red}{a} \pmatrix{1&&&&&\\u&1&&&&\\u^2&u&1&&&\\ \cdots&\cdots&&&& \\ \cdots&\cdots&&&& \\ u^{n-1}&u^{n-2}&u^{n-3}&\cdots& 1} \color{red}{a}}_{C_n}\underbrace{\pmatrix{1&u&u^2&u^3&\cdots &u^{n-1}\\&1&u&u^2&\cdots &u^{n-2}\\&&1&u&\cdots& u^{n-3}\\ &&&&\cdots&\cdots \\ &&&&\cdots&\cdots \\&&&&& 1}}_{C_n^T}$$
where $a:=\sqrt{1-u^2}.$
Proof :
We can assume, without loss of generality, that $i \le j$.
Entry $(A_n)_{i,j}$ is the product of the $i$th row "$u^{i-1} \ u^{i-2} \ \cdots \ u^2 \ 1$" of the first matrix by the $j$th column "$u^{j-1} \ u^{j-2} \ \cdots \ u^2 \ 1$" of the second matrix :
$$\color{red}{a^2}(u^{i+j-2}+u^{i+j-4}+\cdots+u^{j-i})$$
$$=\color{red}{a^2}u^{j-i}(u^{2i-2}+u^{2i-4}+\cdots+1)\tag{1}$$
The sum within parentheses being a geometric series with ratio $u^{2}$, (1) can be transformed into :
$$\color{red}{a^2}u^{j-i}\frac{1-u^{2i}}{1-u^{2}}$$
$$=u^{j-i}(1-u^{2i})=u^{j-i}-u^{i+j}$$
as desired.
Remarks about matrix $A_n$ :
This matrix can be interpreted (up to a constant factor) as the covariance matrix of a Orstein-Uhlenberg process. As such, it is positive (semi) definite.
The inverse of $A_n$ is a Toeplitz tridiagonal matrix. We could use this property in order to obtain its eigenvalues and show they are all positive.