A356871 Primitive coreful abundant numbers (second definition): coreful abundant numbers (A308053) that are powerful numbers (A001694).
72, 108, 144, 200, 216, 288, 324, 400, 432, 576, 648, 784, 800, 864, 900, 972, 1000, 1152, 1296, 1568, 1600, 1728, 1764, 1800, 1936, 1944, 2000, 2304, 2592, 2700, 2704, 2744, 2916, 3136, 3200, 3456, 3528, 3600, 3872, 3888, 4000, 4356, 4500, 4608, 4900, 5000, 5184
Offset: 1
Keywords
Examples
72 is a term since csigma(72) = 168 > 2 * 72, and 72 = 2^3 * 3^2 is powerful.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
f[p_, e_] := (p^(e+1)-1)/(p-1)-1; s[1] = 1; s[n_] := If[AllTrue[(fct = FactorInteger[n])[[;;, 2]], #>1 &], Times @@ f @@@ fct, 0]; seq={}; Do[If[s[n] > 2*n, AppendTo[seq, n]], {n, 1, 5000}]; seq
Comments