cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A074886 Numbers n such that sigma(sigma(n) - n) = phi(sigma(n) + n).

Original entry on oeis.org

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

Views

Author

Joseph L. Pe, Sep 13 2002

Keywords

Examples

			sigma(sigma(110)-110) = sigma(216-110) = 162; phi(sigma(110)+110) = phi(326) = 162, so 110 is a term of the sequence.
		

Crossrefs

Programs

  • Mathematica
    r = {}; Do[d = DivisorSigma[1, n]; If[DivisorSigma[1, d - n] == EulerPhi[d + n], r = Append[r, n]], {n, 1, 10^5}]; r