A067385 a(n) is smallest x such that sigma(phi(x))/sigma(x) = n.
1, 13, 181, 121679, 1033474069
Offset: 1
Programs
-
Mathematica
a[ n_ ] := For[ x=1, True, x++, If[ DivisorSigma[ 1, EulerPhi[ x ] ]/DivisorSigma[ 1, x ]==n, Return[ x ] ] ]
Extensions
a(5) from Vim Wenders, Mar 11 2007
Comments