A087975 a(n) is the smallest number having n as the largest number of distinct prime factors of any term in its 3x+1 trajectory.
1, 2, 3, 15, 210, 703, 20895, 239263, 4497567, 28203751, 2222250495, 103612115103
Offset: 0
Examples
a(5) = 703 because 703 is the smallest number whose Collatz trajectory has 5 as the largest number of distinct prime factors of any term in its 3x+1 trajectory; its trajectory includes 93940 = 2^2 * 5 * 7 * 11 * 61.
Crossrefs
Cf. A087974.
Programs
-
Mathematica
Join[{1},Table[k=0;While[Last@NestWhileList[If[OddQ@#,3#+1,#/2]&,++k,#!=1&&PrimeNu@#!=n&]==1];k,{n,5}]] (* Giorgos Kalogeropoulos, Jan 11 2022 *)
Extensions
a(6)-a(11) from Kevin P. Thompson, Jan 10 2022
Comments