A377563 Numbers that have fewer infinitary divisors than noninfinitary divisors.
16, 36, 48, 80, 81, 100, 112, 144, 162, 176, 180, 196, 208, 225, 240, 252, 256, 272, 288, 300, 304, 324, 336, 368, 396, 400, 405, 432, 441, 450, 464, 468, 484, 496, 512, 528, 560, 567, 576, 588, 592, 612, 624, 625, 648, 656, 676, 684, 688, 700, 720, 752, 768, 784, 800
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] < 1/2; Select[Range[800], q]
-
PARI
is(n) = {my(f = factor(n)); vecprod(apply(x -> (1 << hammingweight(x)) / (x+1), f[, 2])) < 1/2;}
Comments