The following function is very similar to the one involved in Collatz Conjecture $$ f(n) = \begin{cases} 3n-1 & \text {if $n$ is odd} \\ \frac{n}{2} & \text {if $n$ is even} \end{cases} ,$$ but counter-examples (to the well-known statement) do exist, meaning that some values of n are such that for any $k$ : $$f^{k}(n)≠1\;.$$
For instance, $5, 7, 10, 14, 17, 20, 25, 34, 37, 41, 50, 55, 61, 68, 74, 82, 91, 110, 122, 136, 164, 182, 272$ yield cyclical patterns containing no $1$. But all these values allow to build only two different cyclical patterns:
(5 14 7 20 10) then again 5, etc.
(17 50 25 74 37 110 55 164 82 41 122 61 182 91 272 136 68 34) then 17 etc.
Or for odd steps counter-examples are:
$$5,7$$
$$17,25,37,55,41,61,91$$
Of course, the sequence starting at,for example,$n=243$ wouldn't be considered as really new since it soon leads to one of these two patterns above.
The question: Is there another similar cyclical pattern?
For even examples, you can take $91\cdot 2^m$ for any $m$. For odd examples, take $$\frac{91\cdot 2^m+1}{3}$$ for odd $m$.
Of course this is assuming that $91$ is indeed a correct counter example, I did not check that.