The Collatz function applied to a number $x$ gives $3x+1$ when $x$ is odd and $x/2$ when $x$ is even. Consider the following Collatz sequence:
97760291, 293280874, 146640437, 439921312, 219960656, 109980328, 54990164, 27495082, 13747541, 41242624, 20621312, 10310656, 5155328, 2577664, 1288832, 644416, 322208, 161104, 80552, 40276, 20138, 10069, 30208, 15104, 7552, 3776, 1888, 944, 472, 236, 118, 59, 178, 89, 268, 134, 67, 202, 101, 304, 152, 76, 38, 19, 58, 29, 88, 44, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1
If we ignore even numbers then this sequence contains 14 consecutive odd primes (highlighted in bold). What is the most number of consecutive odd primes that can be found in a Collatz sequence?
This question was inspired by this one: Prime numbers in Collatz sequences
Your question is equivalent to find prime numbers : $$p,\frac{3p+1}{2^{a_1}},\frac{3\bigg(\frac{3p+1}{2^{a_1}}\bigg)+1}{2^{a_2}},\ldots$$ for arbitrarily long chains, say of length $n$. This is similar to Cunningham chains. According to Dickson's conjecture, $n$ can get arbitrarily large. Thus, one must expect there to be arbitrarily large chains of such primes in the Collatz Sequence.