OFFSET
1,1
COMMENTS
All terms below 110000000 are odd and squarefree. What is the smallest term of other form?
a(28) = 233187611 = 31^2 * 167 * 1453 is the first nonsquarefree term. - Charles R Greathouse IV, Oct 17 2013
LINKS
Charles R Greathouse IV and Donovan Johnson, Table of n, a(n) for n = 1..119 (terms < 3*10^10, first 88 terms from Charles R Greathouse IV)
MATHEMATICA
Do[If[2(DivisorSigma[1, n]+EulerPhi[n])==EulerPhi[DivisorSigma[1, n]]+DivisorSigma[1, EulerPhi[n]], Print[n]], {n, 110000000}]
Select[Range[1048*10^5], EulerPhi[#]+DivisorSigma[1, #]==Mean[{EulerPhi[ DivisorSigma[ 1, #]], DivisorSigma[ 1, EulerPhi[ #]]}]&] (* Harvey P. Dale, Jan 16 2020 *)
PROG
(PARI) for(n=1, 1e8, f=factor(n); ph=eulerphi(f); s=sigma(f); if(2*ph+2*s == sigma(ph)+eulerphi(s), print1(n", "))) \\ Charles R Greathouse IV, Oct 17 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Farideh Firoozbakht, Oct 16 2013
STATUS
approved