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

Numbers k such that sigma(k + sigma(k)) = sigma(k) + sigma(sigma(k)), where sigma = A000203.
6

%I #20 Oct 07 2024 01:27:25

%S 1986,58920,88092,111276,201588,662160,1103076,1573536,1671056,

%T 1887900,3172434,4507152,4575124,8105188,10971936,42273728,56886840

%N Numbers k such that sigma(k + sigma(k)) = sigma(k) + sigma(sigma(k)), where sigma = A000203.

%e a(3) = 88092 is a term because sigma(88092) = 222768, sigma(222768) = 812448 and sigma(88092 + 222768) = sigma(310860) = 1035216 = 222768 + 812448.

%p filter:= proc(k) uses numtheory; local s;

%p s:= sigma(k);

%p sigma(k+s) = s + sigma(s)

%p end proc:

%p select(filter, [$1..10^7]);

%Y Cf. A000203, A376830, A376843, A376844, A376848, A376849, A376851.

%K nonn,more

%O 1,1

%A _Robert Israel_, Oct 05 2024