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

A344102
Numbers k with at least two divisors d for which sigma(k) = d*sigma(d).
1
16380, 290160, 475020, 1372140, 4754880, 5284356, 5624892, 7033572, 8414640, 10322676, 12203100, 12724908, 16435692, 16655184, 24306480, 35675640, 36203076, 39792060, 43266132, 49758720, 55040076, 68229252, 70142436, 74662476, 76527360, 77084280, 82833660
OFFSET
1,1
EXAMPLE
sigma(16380) = 156*sigma(156) = 182*sigma(182).
sigma(16655184) = 4368*sigma(4368) = 4836*sigma(4836) = 5642*sigma(5642).
MATHEMATICA
Select[Range[1.5*10^6], Count[(d = Divisors[#]) * DivisorSigma[1, d], DivisorSigma[1, #]] > 1 &] (* Amiram Eldar, May 12 2021 *)
PROG
(Magma) s:=func<n|{d:d in Divisors(n)|DivisorSigma(1, n) eq DivisorSigma(1, d)*d}>; [n: n in [1..1000000]|#s(n) ge 2];
CROSSREFS
KEYWORD
nonn
AUTHOR
Marius A. Burtea, May 10 2021
STATUS
approved