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”).

A329881
Nonunitary doubly superperfect numbers: numbers k such that nusigma(nusigma(k)) = 2*k, where nusigma(k) = sigma(k) - usigma(k) is the sum of nonunitary divisors of k (A048146).
1
4032, 13104, 58032, 69648, 237744, 278592, 365652, 1114368, 15333552, 71319552, 245364912, 981465264, 1141112832, 4564451328, 873139150710, 4020089387184
OFFSET
1,1
COMMENTS
Analogous to superperfect numbers (A019279) as nonunitary doubly perfect numbers (A064592) is analogous to perfect numbers (A000396).
If n = 2^k*3*1451 and nusigma(n) = 2^5*3*11^2*p, with p > 11 prime, then n is a term. This happens for k = 4, 6, 8, 14, 18, 20, 32, 62, 90, 108, 128, 522, 608, ... . Similarly, if p=2^k-1 is prime (A000043), then 2^4*3^2*13*p is a term for k > 2. - Giovanni Resta, Nov 23 2019
a(17) > 6*10^12. - Giovanni Resta, Nov 24 2019
MATHEMATICA
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); nusigma[n_] := DivisorSigma[1, n] - usigma[n]; Select[Range[3*10^5], nusigma[nusigma[#]] == 2*# &]
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Nov 23 2019
EXTENSIONS
a(15)-a(16) from Giovanni Resta, Nov 24 2019
STATUS
approved