A243115 Starting values of the reduced Collatz function (A014682) where 2 to the power of the "dropping time" is greater than the starting value.
3, 7, 11, 15, 23, 27, 31, 39, 47, 59, 63, 71, 79, 91, 95, 103, 111, 123, 127, 155, 159, 167, 175, 191, 199, 207, 219, 223, 231, 239, 251, 255, 283, 287, 303, 319, 327, 347, 359, 367, 383, 411, 415, 423, 447, 463, 479, 487, 495, 507, 511, 539, 543, 559, 575
Offset: 1
Keywords
Examples
3 is in this sequence because the dropping time starting with 3 is A126241(3) = 4 and 2^4 > 3.
Programs
-
PARI
is(t)= if(t<3||3!=t%4,0,my(x=t, d=0); until(x<=t, if(x%2, x=(x*3+1)/2, x/=2); d++); 2^d>t); \\ updated by Ruud H.G. van Tol, Jan 10 2023
Extensions
Offset 1 from Ruud H.G. van Tol, Jan 10 2023
Comments