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 A192719 #40 Jan 11 2015 04:33:28 %S A192719 1,2,1,3,10,5,16,8,4,2,1,6,3,10,5,16,8,4,2,1,7,22,11,34,17,52,26,13, %T A192719 40,20,10,5,16,8,4,2,1,9,28,14,7,22,11,34,17,52,26,13,40,20,10,5,16,8, %U A192719 4,2,1,12,6,3,10,5,16,8,4,2,1 %N A192719 Chain of Collatz sequences. %C A192719 The sequence is a chain of Collatz sequences. The first Collatz sequence in the chain is (1). Each of the subsequent Collatz sequences in the chain starts with the minimum positive integer that does not appear in the previous Collatz sequences. If the Collatz conjecture is true, then each Collatz sequence in the chain will end with 1, and the chain will include an infinite number of distinct Collatz sequences. If the Collatz conjecture is false, then the chain will end with the first Collatz sequence that does not converge to 1. %C A192719 T(n,1) = A177729(n). - _Reinhard Zumkeller_, Jan 03 2013 %H A192719 Reinhard Zumkeller, <a href="/A192719/b192719.txt">Rows n = 1..120 of triangle, flattened</a> %H A192719 Robert C. Lyons, <a href="/A192719/a192719_2.java.txt">Chain of Collatz sequences generator program in Java</a> %H A192719 <a href="/index/3#3x1">Index entries for sequences related to 3x+1 (or Collatz) problem</a> %e A192719 The first Collatz sequence in the chain is (1). The second Collatz sequence in the chain is (2, 1), which starts with 2, since 2 is the smallest positive integer that doesn't appear the first Collatz sequence. The third Collatz sequence in the chain is (3, 10, 5, 16, 8, 4, 2, 1), which starts with 3, since 3 is the smallest positive integer that doesn't appear the previous Collatz sequences. %e A192719 Thus this irregular array starts: %e A192719 1; %e A192719 2, 1; %e A192719 3, 10, 5, 16, 8, 4, 2, 1; %e A192719 6, 3, 10, 5, 16, 8, 4, 2, 1; %e A192719 7, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1; %e A192719 9, 28, 14, 7, 22, 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1; %e A192719 ... %o A192719 (Java) See Lyons link. %o A192719 (Haskell) %o A192719 a192719 n k = a192719_tabf !! (n-1) !! (k-1) %o A192719 a192719_row n = a192719_tabf !! (n-1) %o A192719 a192719_tabf = f [1..] where %o A192719 f (x:xs) = (a070165_row x) : f (del xs $ a220237_row x) %o A192719 del us [] = us %o A192719 del us'@(u:us) vs'@(v:vs) | u > v = del us' vs %o A192719 | u < v = u : del us vs' %o A192719 | otherwise = del us vs %o A192719 -- _Reinhard Zumkeller_, Jan 03 2013 %Y A192719 Cf. A014682, A070167, A070165, A061641, A177729, A192719. %Y A192719 Cf. A220263 (row lengths); A070165, A220237. %K A192719 nonn,easy,tabf %O A192719 1,2 %A A192719 _Robert C. Lyons_, Dec 31 2012