In the shortcut collatz function $$ T(x) = \begin{cases} \frac{x}{2} & \text{if } x \equiv 0 \pmod{2} \\[2ex] \frac{3x + 1}{2} & \text{if } x \equiv 1 \pmod{2} \end{cases} $$
The dropping time of $n$ is the number of steps it takes for $n$ to reach a value smaller than the initial seed. That would make the dropping time of $1$ undefined, so other way you could define the dropping time of $n$ is the number of steps it takes for $n$ to reach a number smaller or equal to the seed, but you need to apply the function at least once.
i.e. $$D(x) = \text{smaller $k$ such that } T^k(x) \le x \text{ for } k \in \mathbb{Z}^{+}$$
Acording to the OEIS sequence A020914, the allowable values that a dropping time can be are $\lfloor1 + n \cdot \log_2(3)\rfloor$, where can i find a proof for that?
Edit:
Also, for the non-shortcut version
$$ f(x) = \begin{cases} \frac{x}{2} & \text{if } x \equiv 0 \pmod{2} \\[2ex] {3x + 1} & \text{if } x \equiv 1 \pmod{2} \end{cases} $$
According to the OEIS sequence A122437, the allowable values of dropping time using this original function is $\lfloor 1 + (n - 1)\log_2(6) \rfloor$ which is the same as $\lfloor 1 + (n - 1)(\log_2(3) + 1) \rfloor$
a(n) is also the number of binary digits of 6^(n-1); for example, a(4)=8 since 6^(4-1)=216 in binary is 11011000, an 8-digit number. - Julio Cesar de la Yncera, Mar 28 2009


This is a comment not an answer, but too long for the comment box
Mike Winkler in his text on the "algorithmic structure of the finite stopping time (...)" (see arXiv) should have a proof (or a reference to a proof). Most likely you can go from the following screenshot:
Here it is to mention, that in OEIS.org/A020914 is no proof/link to a proof provided. Don't know, whether in one of [OEIS 5] "The On-Line Encyclopedia of Integer Sequences (OEIS), A020914, A022921, A056576, A076227, A100982, A177789 (http://oeis.org)" such a proof is provided.
And I don't see immediately, that proof of theorem 1 follows from proof of theorem 2; no idea.
(I'm currently trying to formulate such a proof on my own, but either it is completely trivial or I don't get the problem correctly, I'm not at an end with this... )
Mike Winkler points towards an article by L.E.Garner (1981, available at JStor) who comes near a proof, see one short part from screenshot (coloured enhancements by me, G.H.):
but where he leaves it conditionally on not too many odd terms. (This is where I've got stuck myself and which I'm trying to make explicite/omissible).
Second part of screenshot:
So Garner(1981) left it conjectured that dropping times are not larger than $\lceil N \cdot \log_2(3) \rceil$ ($N$ denoting the number of odd steps)