A361208 Number of middle divisors of the n-th number whose divisors increase by a factor of 2 or less.
1, 1, 1, 2, 1, 2, 1, 1, 2, 2, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 3, 2, 2, 2, 2, 2, 1, 2, 2, 2, 4, 2, 1, 2, 2, 3, 2, 2, 2, 1, 2, 2, 4, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 4, 4, 1, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 1, 2, 4, 2, 2, 2, 4, 2, 2, 4, 2, 2, 2, 1, 2, 3, 2, 2, 2, 4, 4, 2, 2, 3, 2, 2, 2, 2, 2, 2, 4
Offset: 1
Keywords
Programs
-
Mathematica
With[{$MaxExtraPrecision = 1000}, Map[Function[n, Count[Divisors[n], ?(Sqrt[n/2] <= # < Sqrt[2 n] &)]], Select[Range[500], And @@ Map[# <= 2 &, (Rest[#]/Most[#])] &@ Divisors[#] &]] ] (* _Michael De Vlieger, Mar 28 2023, after Harvey P. Dale at A174973 *)
Comments