OFFSET
1,1
COMMENTS
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
P. A. MacMahon, Divisors of numbers and their continuations in the theory of partitions, Proc. London Math. Soc., 19 (1919), 75-113.
W. Sierpinski, Number Of Divisors And Their Sum, Elementary theory of numbers, Warszawa, 1964.
EXAMPLE
4 is in the sequence because tau(4) = 3, phi(3)=2, sopf(4)=2 and tau(2) = 2;
6 is in the sequence because tau(6) = 4, phi(6)=2, sopf(6)=5 and tau(5) = 2.
MAPLE
isA173328 := proc(n)
numtheory[phi](numtheory[tau](n)) = numtheory[tau](A008472(n)) ;
end proc:
for n from 1 to 300 do
if isA173328(n) then
printf("%d, ", n);
end if;
end do: # R. J. Mathar, Nov 07 2011
MATHEMATICA
Select[Range[2, 300], EulerPhi[DivisorSigma[0, #]]==DivisorSigma[0, Total[ FactorInteger[#][[All, 1]]]]&] (* Harvey P. Dale, May 30 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 16 2010
STATUS
approved