A379030 Nonsquarefree modified exponential abundant numbers: nonsquarefree numbers k such that A241405(k) > 2*k.
120, 150, 168, 270, 294, 420, 630, 660, 726, 750, 780, 840, 924, 990, 1014, 1020, 1050, 1092, 1140, 1170, 1320, 1380, 1386, 1428, 1470, 1530, 1560, 1596, 1638, 1650, 1710, 1734, 1740, 1848, 1860, 1890, 1950, 2040, 2058, 2070, 2142, 2166, 2184, 2220, 2280, 2394
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
f[p_, e_] := DivisorSum[e + 1, p^(# - 1) &]; mesigma[1] = 1; mesigma[n_] := Times @@ f @@@ FactorInteger[n]; nsmeAbQ[n_] := !SquareFreeQ[n] && mesigma[n] > 2*n; Select[Range[2400], nsmeAbQ]
-
PARI
is(n) = {my(f=factor(n)); if(issquarefree(f), 0, prod(i=1, #f~, sumdiv(f[i, 2]+1, d, f[i, 1]^(d-1))) > 2*n);}
Comments