Consider an urn with $k$ balls, labeled $1$ through $k$. One step shall be defined as the following procedure: randomly drawing one ball at equal probability for all balls in the urn, removing all balls with labels showing numbers greater than the number of the ball drawn, putting the ball drawn back. (Side remark: it is possible that the number of balls doesn't change by doing a step).
Question: What is the expected value for the number of steps $n$ needed to draw the ball with label $1$?
Answer (so far): If we look at the problem via tree diagrams we can conclude, that the cumulant probability to draw the ball labeled $1$ within $m+1$ steps is, starting with $k$ balls is given by $S(m,k)/k$ with: $$S(m,k_0)=\sum_{k_1=1}^{k_0}\cdots\sum_{k_m=1}^{k_{m-1}}(\prod_{j=1}^{m}k_j)^{-1}.$$
Replacing $1/i$ with $\int_0^1dx\;x^{i-1}$ the arising terminating geometric series $\sum_{i=0}^{k-1}x^i$ with $\frac{1-x^k}{1-x}$ and integrating out $\int_0^xdy\;(1-y)^{-1}$ this can be simplified to
$$S(n+1,k)\cdot n!=\int_0^1\frac{1-x^k}{1-x}\ln^n(\frac1{1-x}),$$
where of course the word 'simplified' is up to personal preference. This form only remains valid for nonnegative $n$ and as the number of steps is given by $n+2$ we need to know in addition to the above, that $S(0,k)=1$ (ie. that the probability of finding $1$ in the first step is $1/k$).
From all that we can in principle find the Expactation value by noting, that for discrete random variables with cumulative $F(n)$ the mean can be defined as $E=\sum_{n=0}^\infty \bigl(1-F(n)\bigr)$.
Unfortunately I'm not able enough to calculate this sum. $F$ relates to $S$ by $F(n)=S(n-1,k)/k$.
EDIT: The answer provided by WhatsUp is correct. I was unsatisfied that the formula $E_m = 1+\frac1m\sum_{i=1}^mE_i$ just came up from nowhere and derived it myself.
From tree diagrams one sees that the probability $P_k(n)$ to find $1$ in the $n$-th step with $k$ balls before the first step is given by $1/k$ if $n=1$ and $P_k(n+1)=\frac1k\sum_{k_1=2}^k\cdots\sum_{k_n=2}^{k_{n-1}}\prod_{j=1}^n\frac1{k_j}$ otherwise. This directly gives $P_k(n)=\frac1k\sum_{i=2}^kP_i(n-1)$.
Inserting that into the mean formula $E_k=\sum_{n=1}^\infty n\cdot P_k(n)$ gives $$\frac1k+\frac1k\sum_{n=1}^\infty(n+1)\sum_{i=2}^kP_i(n)\\ =\frac1k + \frac1k\sum_{i=2}^k\sum_{n=1}^\infty n\cdot P_i(n) + \sum_{n=2}^\infty\frac1k\sum_{i=2}^kP_i(n-1).$$ This can be found to be equal to $1+\sum_{i=2}^kE_i/k$ by noting that the last summand has to amount to $1-P_k(1)$.
Of course then $E_k=\frac1{k-1}(k+\sum_{i=2}^kE_i)$ follows like outlined by WhatsUp and $E_k=1+\sum_{i=1}^{k-1}\frac1i$ can be shown by induction.
For $m\geq 1$, let $E_m$ be the expected number of steps until only one ball remains, if one starts with $m$ balls.
We then have $E_1 = 0$ and $E_m = 1 + \frac 1 m \sum_{i = 1}^m E_i$ for $m > 1$.
This gives $E_m = \frac 1{m - 1}\left(m + \sum_{i = 1}^{m - 1} E_i\right)$ for $m > 1$.
Therefore the sequence $(E_m)_{m\geq 1}$ looks like: $$0, 2, \frac{5}{2}, \frac{17}{6}, \frac{37}{12}, \frac{197}{60}, \frac{69}{20}, \dotsc$$
Guess what it is? It's simply $E_m = 1 + \sum_{i = 1}^{m - 1}\frac 1 i$, for any $m > 1$.
Proof by induction: For $m = 2$, it is clear, as $E_2 = 2 = 1 + \frac 1 1$.
Suppose it's true for $m$. Then we have, for $m + 1$:
\begin{eqnarray*} E_{m + 1} &=& \frac 1 m\left(m + 1 + \sum_{i = 1}^m E_i\right) \\ &=& 1 + \frac 1 m + \frac 1 m \sum_{i = 2}^m\left(1 + \sum_{j = 1}^{i - 1}\frac 1 j\right)\\ &=& 2 + \frac 1 m \sum_{i = 2}^m\sum_{j = 1}^{i - 1}\frac 1 j\\ &=& 2 + \frac 1 m \sum_{j = 1}^{m - 1}\sum_{i = j + 1}^m\frac 1 j\\ &=& 2 + \frac 1 m \sum_{j = 1}^{m - 1}\frac{m - j}{j}\\ &=& 1 + \frac 1 m + \sum_{j = 1}^{m - 1} \frac 1 j\\ &=& 1 + \sum_{j = 1}^m\frac 1 j. \end{eqnarray*}
So the expected number of steps needed to draw the ball with label 1 is exactly $1 + \sum_{i = 1}^{k - 1}\frac 1 i$, when we start with $k$ balls.
For $k > 1$ this is the same as the expected number of steps until only one ball remains, and for $k = 1$ it is also valid, since we need to perform $1$ draw to get that ball.