OFFSET
1,1
COMMENTS
Numbers that are not highest in any Collatz trajectory other than n. - Jayanta Basu, May 27 2013
EXAMPLE
n=104: iteration list = {104,52,26,13,40,20,10,5,16,8,4,2,1}, where initial-value = largest-term.
MATHEMATICA
mcoll[n_]:=Max@@NestWhileList[If[EvenQ[#], #/2, 3#+1] &, n, #>1 &]; t={}; Do[c=i=0; While[c!=1 && ++i<n, If[mcoll[i]==n, c=1]]; If[c==0 && mcoll[n]==n, AppendTo[t, n]], {n, 4, 512, 4}]; t (* Jayanta Basu, May 27 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Sep 08 2003
STATUS
approved