Suppose we have some permutation of the integers from $1$ to $n$. We start reading the permutation from left to right, and only select a number if it is greater than all the numbers to the left of it. For example, for $n=5$ and the permutation $41352$, we will choose the numbers $4,5$.
Over all permutations, what is the probability that the sum of the chosen numbers is even?
I believe that the answer depends on the parity of $n$, because it should be symmetrical when $n$ is even, but slightly less than $n$ when it is odd ($\frac{1}{2} - \frac{1}{2n}$).
Is there a way to formalize this argument.