A350805 Number of iterations to reach 1 or a repeated value when starting at n for the map: x -> Sum_{prime factors of x} A006370(x), where A006370 is the Collatz 3x+1 map.
0, 1, 35, 2, 4, 11, 31, 36, 9, 34, 10, 1, 19, 32, 5, 3, 33, 7, 17, 8, 6, 30, 31, 20, 6, 5, 2, 21, 9, 2, 30, 5, 30, 9, 30, 30, 7, 30, 30, 18, 5, 31, 30, 30, 31, 38, 38, 33, 31, 30, 33, 32, 8, 30, 31, 7, 30, 16, 30, 22, 36, 32, 32, 12, 8, 32, 34, 30, 10, 30, 37, 32, 34, 30, 32, 23, 8, 34, 34
Offset: 1
Keywords
Examples
a(2) = 1 as 2 -> 1 in the 3x+1 map, which then has no further prime factors. a(3) = 35 as 3 -> 10 -> 17 -> 52 -> 42 -> 33 -> 44 -> 36 -> 22 -> 35 -> 38 -> 59 -> 178 -> 269 -> 808 -> 307 -> 922 -> 1385 -> 848 -> 164 -> 126 -> 43 -> 130 -> 57 -> 68 -> 54 -> 31 -> 94 -> 143 -> 74 -> 113 -> 340 -> 70 -> 39 -> 50 -> 33, which repeats (33) after thirty-five iterations. This is the first number to enter the thirty-member loop. a(5) = 4 as 5 -> 16 -> 4 -> 2 -> 1. a(12) = 1 as 12 -> 12. The prime factorization of 12 is 2*2*3, which maps to 1,1,10, and 1+1+10 = 12. This is the only known fixed point/one-term loop. a(15) = 5 as 15 -> 26 -> 41 -> 124 -> 96 -> 15, which repeats (15) after five iterations. This is the first number to enter the five-member loop. a(27) = 2 as 27 -> 30 -> 27, which repeats (27) after two iterations. This is the first number to enter the two-member loop. a(4096) = 2 as 4096 -> 12 -> 12, which repeats (12) after two iterations. This is the first value, other than 12, that ends at 12.
Comments