Solution:
We want to determine the number of permutations π of 1,…,n such that every number is involved in an even number of inversions. The key observation is that the number of inversions k is involved in has the same parity as π(k)−k. This is since π(k)−k can be interpreted as the number of i with π(i)<π(k) minus the number of i with i<k, meaning that i is counted with a weight of ±1≡1(mod2) if and only if i is in an inversion with k.
From this, it follows that such permutations are the ones that permute the even and odd numbers, so the answer is ⌊2n⌋!⌈2n⌉!.