This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A224367 #20 Aug 07 2025 08:35:33 %S A224367 0,1,2,4,5,7,6,9,10,11,11,13,12,4,5,1,6,3,2,4,7,8,9,8,10,11,9,13,11, %T A224367 13,12,14,15,5,16,16,6,18,17,20,17,19,7,4,5,4,6,1,5,6,7,7,2,9,6,8,7, %U A224367 17,18,9,19,9,10,20,20,11,10,22,11,24,21,23,21,36,37 %N A224367 Triangle read by rows giving trajectory of -k/(2n+1) in Collatz problem, k = 1..2n. %C A224367 Extension of A210483 with negative values, and subset of A224360. %e A224367 The 2nd row [4, 5, 7, 6] gives the number of iterations of -k/5 (the first element is not counted): %e A224367 k=1 => -1/5 ->2/5 -> 1/5 -> 8/5 -> 4/5 with 4 iterations; %e A224367 k=2 => -2/5 -> -1/5 -> 2/5 -> 1/5 -> 8/5 -> 4/5 with 5 iterations; %e A224367 k=3 => -3/5 -> -4/5 -> -2/5 -> -1/5 -> 2/5 -> 1/5 -> 8/5 -> 4/5 with 7 iterations; %e A224367 k=4 => -4/5 -> -2/5 -> -1/5 -> 2/5 -> 1/5 -> 8/5 -> 4/5 with 6 iterations. %e A224367 The array starts: %e A224367 [0]; %e A224367 [1, 2]; %e A224367 [4, 5, 7, 6]; %e A224367 [9, 10, 11, 11, 13, 12]; %e A224367 [4, 5, 1, 6, 3, 2, 4, 7]; %e A224367 ... %t A224367 Collatz[n_] := NestWhileList[If[EvenQ[Numerator[-#]], #/2, 3 # + 1] &, n, UnsameQ, All]; t = Join[{{0}}, Table[s = Collatz[-k/(2*n + 1)]; len = Length[s] - 2; If[s[[-1]] == 2, len = len - 1]; len, {n, 10}, {k, 2*n}]]; Flatten[t] (* program from _T. D. Noe_, adapted for this sequence - see A210483 *) %Y A224367 Cf. A210483, A210468, A224299, A224360. %K A224367 nonn,tabf %O A224367 0,3 %A A224367 _Michel Lagneau_, Apr 05 2013