Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #22 Sep 28 2015 03:31:24
%S 7,9,20,25,80,143,825,3117,3216,22774,52026,55804,138276,187733,
%T 228384,265545,320766,549540,830814,839784,901376,1293552,1315776,
%U 2635866,6771114,11126800,12087848,24351460,49382242,52344292,60063744,65980038,78279016,97638080
%N Numbers n such that phi(sigma*(n)) = sigma*(phi(n)), where sigma*(n) is the sum of anti-divisors of n and phi(n) is the Euler totient function.
%C a(70) > 10^10. - _Hiroaki Yamanouchi_, Sep 28 2015
%H Hiroaki Yamanouchi, <a href="/A243996/b243996.txt">Table of n, a(n) for n = 1..69</a>
%e sigma*(phi(25)) = sigma*(20) = 24, phi(sigma*(25)) = phi(39) = 24.
%p with(numtheory): P:=proc(q) local a,b,c,d,j,k,n;
%p for n from 1 to q do
%p k:=0; j:=n; while j mod 2<>1 do k:=k+1; j:=j/2; od;
%p a:=sigma(2*n+1)+sigma(2*n-1)+sigma(n/2^k)*2^(k+1)-6*n-2;
%p k:=0; c:=phi(n); j:=phi(n); while j mod 2<>1 do k:=k+1; j:=j/2; od;
%p b:=sigma(2*c+1)+sigma(2*c-1)+sigma(c/2^k)*2^(k+1)-6*c-2;
%p if b=phi(a) then print(n); fi; od; end: P(10^10);
%t antiDivisors[n_] := Select[ Union[ Join[ Select[ Divisors[2 n - 1], OddQ[#] && # != 1 &], Select[ Divisors[ 2n + 1], OddQ[#] && # != 1 &], 2n/Select[ Divisors[ 2n], OddQ[#] && # != 1 &]]], # < n &]; fQ[n_] := EulerPhi@ Total@ antiDivisors@ n == Total@ antiDivisors@ EulerPhi@ n; k = 3; lst = {}; While[k < 10000001, If[ fQ@ k, AppendTo[lst, k]]; k++]; lst (* _Robert G. Wilson v_, Jun 21 2014 *)
%Y Cf. A000203, A066417, A230373, A033632.
%K nonn
%O 1,1
%A _Paolo P. Lava_, Jun 18 2014
%E a(22)-a(25) from _Robert G. Wilson v_, Jun 21 2014
%E a(26)-a(34) from _Hiroaki Yamanouchi_, Sep 28 2015