This looks very simple, but it's totally over my head. Any clue is appreciated.
Randomly choose one ball out of $n$ different balls, calculate the expected number of experiments when the same ball appears again.
My solution is: $E(e)= 2P(n=2) + 3P(n=3) + \cdots + dP(n=d) + (d+1)P(n=d+1)$
The ball will be the same to the one of the previous balls in the $d+1$ experiments for sure. The probability: $$P(e=i) = (i-1)d(d-1) \cdots (d-i+1)/d^i,$$ but I don't know how to find $E(e)$. Any suggestions would be appreciated.