OFFSET
1,1
COMMENTS
Numbers k such that A037445(k)/A000005(k) = 2/3. For numbers k in A036537, all the divisors are infinitary divisors, so A037445(k)/A000005(k) = 1. For numbers k that are not in A036537, the largest possible ratio A037445(k)/A000005(k) is 2/3.
Numbers whose prime factorization has exactly one exponent of the form 3*2^k-1, with k >= 0, and the rest of the exponents, if there are any, are of the form 2^k-1, with k >= 1.
The asymptotic density of this sequence is d * Sum_{p prime} (Sum_{k>=0} 1/p^(3*2^k-1))/(1 + Sum_{k>=1} 1/p^(2^k-1)) = 0.23171917985739378623..., where d = A327839.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
f[p_, e_] := 2^DigitCount[e, 2, 1]/(e + 1); q[1] = False; q[n_] := Times @@ f @@@ FactorInteger[n] == 2/3; Select[Range[250], q]
PROG
(PARI) is(n) = {my(f = factor(n)); vecprod(apply(x -> (1 << hammingweight(x)) / (x+1), f[, 2])) == 2/3; }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Nov 01 2024
STATUS
approved