Problem:
Let $\delta \in \mathbb{R}^+$ and $n\in \mathbb{N}$. The matrix $A_n = (a_{i,j}) \in \mathbb{R}^{n\times n}$ is defined as
$$ a_{i,j} = \prod_{k=0}^{i-2}\left((j-1)\delta +n-k\right) $$ Prove that $$\det A_n = \delta ^{\frac{1}{2}n(n-1)}\prod^{n-1}_{k=0}k!$$
So there is
$$ A_1 = \pmatrix{ 1\\ } $$
$$ A_2 = \pmatrix{ 1&1\\ 2&\delta+2\\ } $$
$$ A_3 = \pmatrix{ 1&1&1\\ 3&\delta+3&2\delta+3\\ 6&(\delta+3)(\delta+2)&(2\delta+3)(2\delta+2)\\ } $$
$$\vdots$$
I eventually managed to prove it by converting the matrix to upper triangular using elementary row operations, but the proof is just too complicated, involves things like $(k−2)\delta+n−(i−(k−1))+1)$-th multiples of certain rows (for that matter it is quite long, so I am not fully including it here). So it somehow feels like not the best possible way to do this.
What are some another ways to prove this?