login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A329884
Nonunitary superperfect numbers: numbers k such that nusigma(nusigma(k)) = k, where nusigma(k) = sigma(k) - usigma(k) is the sum of nonunitary divisors of k (A048146).
2
24, 48, 56, 112, 192, 248, 252, 328, 448, 496, 768, 1016, 1792, 1984, 2032, 3240, 6462, 7936, 8128, 11616, 11808, 17412, 20538, 32512, 49152, 65528, 114688, 131056, 507904, 524224, 786432, 1048568, 1835008, 2080768, 2096896, 2097136, 3145728, 4194296, 7340032
OFFSET
1,1
COMMENTS
Analogous to superperfect numbers (A019279) as nonunitary perfect numbers (A064591) is analogous to perfect numbers (A000396).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..53 (terms below 10^10)
MATHEMATICA
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); nusigma[n_] := DivisorSigma[1, n] - usigma[n]; Select[Range[10^6], nusigma[nusigma[#]] == # &]
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 23 2019
STATUS
approved