login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A074886
Numbers n such that sigma(sigma(n) - n) = phi(sigma(n) + n).
1
14, 110, 274, 435, 1298, 4608, 4646, 5384, 9214, 10154, 10778, 11912, 13035, 13844, 15026, 18698, 21346, 22958, 25642, 26846, 27466, 32078, 34546, 41164, 49570, 77374, 80438, 85875
OFFSET
1,1
LINKS
EXAMPLE
sigma(sigma(110)-110) = sigma(216-110) = 162; phi(sigma(110)+110) = phi(326) = 162, so 110 is a term of the sequence.
MATHEMATICA
r = {}; Do[d = DivisorSigma[1, n]; If[DivisorSigma[1, d - n] == EulerPhi[d + n], r = Append[r, n]], {n, 1, 10^5}]; r
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Sep 13 2002
STATUS
approved