A378847 Smallest starting x which takes n tripling steps to reach the minimum of a cycle in the 3x-1 iteration.
1, 3, 15, 13, 9, 37, 25, 33, 45, 57, 145, 97, 65, 87, 159, 165, 225, 273, 391, 261, 647, 465, 741, 529, 353, 471, 921, 837, 865, 577, 385, 257, 343, 229, 153, 407, 543, 721, 481, 321, 855, 1141, 761, 1015, 677, 903, 1209, 1605, 2149, 1433, 1911, 2529, 3397, 2265
Offset: 0
Keywords
Examples
For n=4, a(4) = 9 has 4 tripling steps on its way to 5 which is the minimum of a cycle: 9 -> 26 -> 13 -> 38 -> 19 -> 56 -> 28 -> 14 -> 7 -> 20 -> 10 -> 5 ^ ^ ^ ^ This a(4) = 9 is an example where a(n) is at its lower bound L(n), in this case a(3) = 13 has L(4) = (2*a(3)+1)/3 = 9 which is an integer and not a cycle minimum.
Links
- Kevin Ryde, Table of n, a(n) for n = 0..625
- Kevin Ryde, C Code (set count type TRIPLE)
Crossrefs
Programs
-
C
/* See links. */
Comments