I've searched up to $10^8$ and the closest you get to your bound is at $230631$ which appears in your first graph. Nothing else is even above $240 + x^{.43}$ let alone your bound. $$\\{x \in \Bbb{Z}|\quad0
As was mentioned in the comments. There are no known results of the type you are asking. I did the search to answer your query for an in-depth search.
#include
#include
#include
#define u64 long long unsigned
u64 *c;
u64 N = 100000000LL;
u64 collatz( u64 a )
{
if( a < N && c[a] ) return c[a];
u64 t = 1 + collatz( 1&a ? 3*a + 1 : a >> 1 );
return ( a < N ? c[a] = t : t );
}
int main()
{
c = calloc( N, sizeof(u64) );
c[1] = 1;
for( u64 i = 2; i < N; ++i )
if( collatz( i ) >= (u64) ceil( 240. + pow( i, 0.43 ) ) )
printf( "%llu\
", i );
}