Warning: This question contains non-standard language for the problem.
I define the collatz length $\operatorname{cl}(n)$ of an integer $n$ to be the minimum number of steps that takes for it to reach 1 by applying the procedure described in Collatz Conjecture. For example, $2 \rightarrow 1$ so, $\operatorname{cl}(2) = 1$, and $4 \rightarrow 2 \rightarrow 1$, so $\operatorname{cl}(4) = 2$.
I was trying to find integers for which $\operatorname{cl}(n) = n$. Using my computer, I checked all natural numbers up to $10^6$. Within that interval, the only one that satisfied the conditions was $5$. I am trying to understand whether there is any other number satisfying this condition, but since I am not familiar with the literature, it is hard for me to reach the existing tools. If you have a suggestion or comment about this question, then I would like to hear it.