Here is a different approach which gives us the same answer in the end. Let:
Let Plane P1 be: 4x-2y+z=3 with normal vector $\vec{n_1}$=[4 -2 1]
$$ $$
Plane P2: 2x-y+3z=-1 has $\vec{n_2}$=[2 -1 3] as its normal vector.
$$ $$
Plane P3: 3x+y-z=-7 has $\vec{n_3}$=[3 1 -1] as its normal vector.
$$ $$
Plane P4: is the plane that we are seeking.
$$ $$
To find the line of intersection of P1 with P2, we can perform gaussian on those two planes: \begin{bmatrix}2&-1&3&-1\\4&-2&1&3\end{bmatrix}
which will give us a solution of the form: $$\begin{bmatrix}x&\\y&\\z\end{bmatrix} =\begin{bmatrix}1&\\0&\\-1\end{bmatrix}+
t\begin{bmatrix}1&\\2&\\0\end{bmatrix} \qquad[1]$$ where t $\epsilon$ R.
Equation [1] is the line of intersection of P1 with P2 and has a direction vector equal $$\vec{v}= \begin{bmatrix}1&\\2&\\0\end{bmatrix}$$. To get the equation of the plane P4, we first find its normal vector by taking the following cross product:
$$ \vec{n_4}=\vec{n_3}\times \vec{v}=\begin{bmatrix}\vec{i}&\vec{j}&\vec{k}\\1&2&0\\3&1&-1\end{bmatrix} =-2i+j-5k$$
So $\vec{n_4}$ is the normal vector of P4.
$$ $$
Next, we have to find a point that lies on P4. Since P4 passes through the line of intersection of P1 and P2, P4 contains the line of intersection give by equation [1] above. So any points on the line of intersection will do. Indeed, pt (3,4,-1) as you found lies on the line of intersection (this can also be achieved by letting t=2 in equation [1] above) and so does (1,0,-1). Suppose we choose (1,0,-1), then the equation of the plane P4 is:
$$-2x+y-5z=3$$
which is the same answer as given by others above as expected.