A067282 Numbers k such that phi(k) + phi(k+1) divides sigma(k) + sigma(k+1).
1, 5, 52, 55, 185, 506, 551, 590, 644, 667, 707, 2285, 2587, 2758, 7551, 10366, 11336, 11564, 11798, 12750, 16616, 16703, 16764, 17383, 18239, 24350, 24415, 26586, 33263, 35541, 40382, 63248, 76247, 76622, 92379, 95069, 97341, 106312, 111388
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..200
Programs
-
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 *)
Extensions
More terms from Labos Elemer, Sep 17 2004
Comments