A372972 Numbers k such that A372720(k) is negative.
162, 250, 324, 384, 486, 648, 686, 768, 972, 1152, 1250, 1296, 1372, 1458, 1536, 1728, 1875, 1944, 2058, 2250, 2304, 2430, 2500, 2560, 2592, 2662, 2738, 2916, 3000, 3072, 3362, 3402, 3456, 3698, 3750, 3840, 3888, 3993, 4050, 4116, 4374, 4394, 4418, 4500, 4608
Offset: 1
Keywords
Examples
a(1) = 162 = 2*3^4, since tau(162) - f(162) = (1+1)*(4+1) - card(A369609(162)) = 10 - 12 = -2. a(2) = 250 = 2*5^3, since tau(250) - f(250) = (1+1)*(3+1) - card(A369609(250)) = 8 - 9 = -1. a(3) = 324 = 2^2*3^4, since tau(324) - f(324) = (2+1)*(4+1) - card(A369609(324)) = 15 - 16 = -1, etc.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]]; Position[Table[r = rad[n]; DivisorSigma[0, n] - Count[Range[n/r], ?(Divisible[r, rad[#]] &)], {n, 5000}], ?(# < 0 &)][[All, 1]]
Comments