OFFSET
1,2
COMMENTS
As phi(x) is even for any integer x > 1, only the first term 1 is odd.
If n is a perfect number, then 2*n = phi(2)*sigma(n) is a term of the sequence.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..1000
EXAMPLE
a(2) = 6 since 6 = 3*2 with phi(3)*sigma(2) = 6.
a(3) = 12 since 12 = 2*6 with phi(2)*sigma(6) = 12.
MATHEMATICA
sigma[n_]:=sigma[n]=DivisorSigma[1, n];
phi[n_]:=phi[n]=EulerPhi[n];
Dv[m_]:=Dv[m]=Divisors[m];
Ld[m_]:=Ld[m]=Length[Dv[m]];
n=0; Do[Do[If[sigma[Part[Dv[m], i]]phi[m/Part[Dv[m], i]]==m, n=n+1; Print[n, " ", m]; Goto[aa]], {i, 1, Ld[m]}]; Label[aa]; Continue, {m, 1, 2300}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Dec 22 2016
STATUS
approved