Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #12 Mar 15 2023 14:02:15
%S 43,131,133,397,405,433,435,441,475,1237,1251,1285,1301,1313,1325,
%T 1339,1425,1427,1431,1433,3861,3925,3939,3941,3981,4017,4019,4043,
%U 4277,4293,4297,4301,11605,11829,12053,12131,12133,12853,12885,12893,12913,12931,36181
%N Odd numbers producing 20 even numbers in the Collatz iteration.
%C For n <10000000, more terms: 36405, 38677, 38741, 38797, 38833, 38835, 116053, 116501, 349525.
%C See row 20 of A199636. There are A131450(20) = 52 terms. - _T. D. Noe_, Nov 18 2011
%t Collatz[n_] := NestWhileList[If[EvenQ[#], #/2, 3 # + 1] &, n, # > 1 &]; t = {}; Do[If[Length[Select[Collatz[n], EvenQ]] == 20, AppendTo[t, n]], {n, 1, 100000, 2}]; t
%Y Cf. A199636.
%K nonn
%O 1,1
%A _Vincenzo Librandi_, Nov 12 2011