A225028 Numbers m such that A206773(m) = k and A206773(k) = m.
36, 42, 50, 1316, 12540240, 29559057, 131080256
Offset: 1
Examples
The divisors of m = 50 are {1, 2, 5, 10, 25, 50} and (1 + 2 + 5 + 10 + 25) - (2 + 5) = 43 - 7 = 36; The divisors of k = 36 are {1, 2, 3, 4, 6, 9, 12, 18, 36} and (1+2+3+4+6+9+12+18) - (2 + 3) = 55 - 5 = 50.
Programs
-
Maple
with(numtheory):for n from 1 to 10^7 do:x:=factorset(n):n1:=nops(x):s:=sum('x[i] ', 'i'=1..n1):s1:=sigma(n)-n-s: y:=factorset(s1):n2:=nops(y): ss:=sum('y[i] ', 'i'=1..n2):s2:=sigma(s1)-s1-ss:if s2=n then printf(`%d, `,n):else fi:od:
Extensions
a(7) from Donovan Johnson, Apr 25 2013
Comments