Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #11 Mar 30 2012 18:38:26
%S 11,35,113,341
%N Odd numbers producing 10 even numbers in the Collatz iteration.
%t Collatz[n_]:=NestWhileList[If[EvenQ[#],#/2,3 #+1]&,n,#>1&];t={};Do[If[Length[Select[Collatz[n],EvenQ]] == 10,AppendTo[t,n]],{n,1,100000,2}];t
%Y Cf. A131450.
%Y Cf. A199636 (row 10).
%K nonn
%O 1,1
%A _Vincenzo Librandi_, Nov 12 2011