A377562 Numbers that have twice as many infinitary divisors as noninfinitary divisors.
4, 9, 12, 18, 20, 25, 28, 32, 44, 45, 49, 50, 52, 60, 63, 68, 72, 75, 76, 84, 90, 92, 96, 98, 99, 108, 116, 117, 121, 124, 126, 132, 140, 147, 148, 150, 153, 156, 160, 164, 169, 171, 172, 175, 188, 198, 200, 204, 207, 212, 220, 224, 228, 234, 236, 242, 243, 244, 245
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
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]
-
PARI
is(n) = {my(f = factor(n)); vecprod(apply(x -> (1 << hammingweight(x)) / (x+1), f[, 2])) == 2/3;}
Comments