A377417 Numbers t such that t + s(t) = s(s(t)), where s(t) is the sum of aliquot divisors of t (A001065(t)).
1272, 4632, 31632, 266712, 805152, 4897392, 94177392, 2928675264
Offset: 1
Examples
a(1) = 1272 because s(1272) = 1968, s(1968) = 3240 = 1272 + 1968. a(2) = 4632 because s(4632) = 7008, s(7008) = 11640 = 4632 + 7008. a(3) = 31632 because s(31632) = 50208, s(50208) = 81840 = 31632 + 50208.
Programs
-
Maxima
(n:1, for t:2 thru 100000000 do (x:divsum(t)-t, y:divsum(x)-x, if t+x=y then (print(n, "" , t ), n:n+1)));
-
PARI
isok(t) = t == sigma(sigma(t) - t) - 2*(sigma(t) - t); \\ Michel Marcus, Oct 29 2024
Comments