Let $a_n$ be the number of permutations of $[0,1,\dots,n-1]$ such that adjacent list entries are never consecutive numbers, as listed in https://oeis.org/A002464.
Let $b_n$ be the number of such permutations, where we additionally require the first element to be nonzero.
You can show that, for all $n\ge 2$,
$$
b_n=a_n-b_{n-1}\tag1
$$
Why? Because the permutations counted by $a_n$ fall into two classes; those whose first element is $0$, and those whose first entry is nonzero. There are $b_n$ permutations whose first entry is nonzero, by definition of $b_n$. If the first entry is zero, then the remaining entries must be a permutation of $[1,2,\dots,n-1]$ whose first entry is not equal to $1$, which is exactly the same as $b_{n-1}$.
If you iterate equation $(1)$, you get a formula for $b_n$ in terms of the numbers $a_4,a_5,\dots,a_n$:
$$
b_n=a_n-a_{n-1}+a_{n-2}-a_{n-3}+\dots+(-1)^{n-4}a_4\tag2
$$
Since the OIES page for $a_n$ does not give a closed formula, and $a_n$ can be written as $b_n+b_{n-1}$, we should not expect a closed formula for $b_n$. Therefore, the formula in $(2)$ is probably the best you can do.