Let $a_1,a_2,\ldots,$ be a permutation of the positive integers. Is it possible that $|a_1-a_2|,|a_2-a_3|,\ldots$ is also a permutation of the positive integer?
My idea is to construct the sequence in such a way that every $a_i$ and $|a_i-a_{i+1}|$ occurs, and never repeats. So I start with $a_1=1$. At any stage, if the lowest unused $a_i$ is $m$ and the lowest unused difference $|a_i-a_{i+1}|$ is $n$, we will attempt to use them. Suppose we've constructed the sequence up to $a_i$. Then set $a_{i+1}$ to be something sufficiently high, set $a_{i+2}=a_{i+1}+n$, and $a_{i+3}=m$. Then we've used $m$ and $n$.
Does this work?
This will work, though it may need some minor tweaks for the edge cases.
The only tweak-needing edge case I can see is if $a_i+n=m$ already. In that case, no matter how large you choose $a_{i+1}$ you would get $|a_{i}-a_{i+1}|=|a_{i+2}-a_{i+3}|$. But of course that is easy to correct for: just choose $a_{i+1}=m$ right away and continue from there two numbers ahead!