A301859 Abundant numbers whose abundance is a perfect number.
48, 2002, 2632, 4540, 5170, 6952, 8925, 29056, 32445, 32980, 88330, 133042, 174856, 189472, 280228, 442365, 518368, 566752, 892552, 1266952, 2030368, 2052256, 2218450, 3959752, 4120672, 4558936, 5568448, 9071752, 15921112, 38551936, 65969536, 70114936, 88149352, 97364848
Offset: 1
Keywords
Examples
48 is a term as it is abundant and its abundance, sigma(48)-2*48 = 28, is the second perfect number.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..68
Crossrefs
Programs
-
Mathematica
Select[Range[10^8], PerfectNumberQ[DivisorSigma[1,# ]-2#]&]
-
PARI
for(n=1,10^8, a=sigma(n)-2*n; a>0&&sigma(a)==2*a&&print1(n ","))
Comments