OFFSET
1,2
COMMENTS
Presumably the ratio (sigma(n)+sigma(n+1))/(phi(n)+phi(n+1)) can be arbitrarily large. - Labos Elemer, Sep 17 2004
The first term for which the ratio is k for k = 2, 3, ... is 1, 5, 644, 6513584, ... - Amiram Eldar, Mar 02 2020
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..200
MATHEMATICA
Select[Range[120000], Divisible[DivisorSigma[1, #] + DivisorSigma[1, # + 1], EulerPhi[#] + EulerPhi[# + 1]] &] (* Amiram Eldar, Mar 02 2020 *)
Select[Partition[Table[{n, EulerPhi[n], DivisorSigma[1, n]}, {n, 111400}], 2, 1], Divisible[ #[[1, 3]]+#[[2, 3]], #[[1, 2]]+#[[2, 2]]]&][[All, 1, 1]] (* Harvey P. Dale, Apr 25 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Feb 23 2002
EXTENSIONS
More terms from Labos Elemer, Sep 17 2004
STATUS
approved