A187941 Least number with exactly n even divisors.
1, 2, 4, 8, 12, 32, 24, 128, 48, 72, 96, 2048, 120, 8192, 384, 288, 240, 131072, 360, 524288, 480, 1152, 6144, 8388608, 720, 2592, 24576, 1800, 1920, 536870912, 1440, 2147483648, 1680, 18432, 393216, 10368, 2520, 137438953472, 1572864, 73728, 3360, 2199023255552, 5760, 8796093022208
Offset: 0
Keywords
Programs
-
Mathematica
evenDivSigma[n_Integer] := Length[Select[Divisors[n], EvenQ]]; Flatten[Table[Take[Select[Range[2, 10^6, 2], evenDivSigma[#] == n &], 1], {n, 20}]] (* Alonso del Arte, Mar 16 2011 *)
Formula
a(n) = 2 * A005179(n) for n > 0.
Comments