We have $n$ distinct kinds of coupons (of unlimited supply), the categories are denoted $1\dots n$.Each time we could draw two coupons, but the two must be of adjacent kind (it could be any of $\{(1,2),(2,3)...,(n-1,n),(n,1)\}$, the probability of drawing any pair is equal). What is the expected number of draws before collecting all $n$ distinct coupons?
Some progress: This is different than just drawing two coupons with replacement randomly, where I already know a formula. And the "pattern" of selecting does not matter, this means drawing $\{(1,3),(2,4)...,(n-1,1),(n,2)\}$ yields the same result.
Here is a formula. My fault, I should have realized this problem being equivalent to Project Euler 645, which I have solved earlier. $$E(n)=1-n\sum_{i=1}^{n-1}\frac{1}{i}\left((-1)^i\binom{n-1}{i}+\frac{\binom{n-i}{i}}{\binom{n-1}{i}}\right)$$ I am now working on the case when a draw includes more than 2 coupons.