A334256 Numbers k such that H(k) = 2*k, where H(k) is the number of ordered factorizations of k (A074206).
3072, 1310720, 469762048, 48378511622144, 14636698788954112, 1115414963960152064, 1254378597012249509888, 358899852698093036240896, 28472620903563746322679857152
Offset: 1
Examples
3072 is a term since A074206(3072) = 6144 = 2 * 3072.
Links
- David A. Corneth, List of found terms in form of oddpart * 2^(multiplicity of 2)
Programs
-
Mathematica
h[1] = 1; h[n_] := h[n] = DivisorSum[n, h[#] &, # < n &]; Select[Range[1.5*10^6], h[#] == 2*# &]
-
PARI
is(n) = A074206(n) == n<<1
Comments