Let $n\ge2$ be an integer. Given an integer $k$ does there exist an $n\times n$ matrix $A$ with integer entries such that $\mathrm{det}(A)=k$ and the first row of $A$ is $(1~2~3~\cdots~n)$?
As much as I could think, we can always obtain the other rows of $A$ by Gram Schmidt orthogonalization starting with the given row, hence getting an orthogonal matrix with determinant $1$, but this matrix doesn't have integer entries.
You can set the first row to be $(1, \dots n)$ as desired. Then, fill every other row except the last one with $1$s in the diagonal, and $k$ is the lower-right corner where we place $k$. This matrix will be upper triangular, and since the diagonal consists of $n-1$ ones and one copy of $k$, it will have determinant $k$.
Formally, consider the upper triangular matrix $M \in \mathbb{R}^{n\times n}$ defined by: $M_{1j} = j,$ $M_{ij} = \delta_{ij} \ $ if $1 < i < n$, and $M_{nj} = k\delta_{nj}$. This matrix verifies that its first row is $(1 \dots n)$, and is upper triangular with $1$s in the diagonal except for the lower-right corner, in which $M_{nn} = k$. Therefore,
$$ \det(M) = \prod_{i=0}^n M_{ii} = k $$