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.

A066226 The sigma(EulerPhi)-perfect numbers, where the set of f-perfect numbers for an arithmetical function f is defined in A066218.

Original entry on oeis.org

2, 88, 328, 5128, 9075, 327688, 1310728, 2066056, 2259976, 188186624, 560889856, 847020032, 1342177288
Offset: 1

Views

Author

Joseph L. Pe, Dec 18 2001

Keywords

Comments

These are all the terms less than 10^5. Problem: Find an expression generating all the terms.

Examples

			Let f(n) = sigma(EulerPhi(n)). The proper divisors of 88 are {1, 2, 4, 8, 11, 22, 44}; adding their f-values: 1 + 1 + 3 + 7 + 18 + 18 + 42 = 90 = f(88). Hence 88 is a term of the sequence.
		

Crossrefs

Programs

  • Mathematica
    f[x_] := DivisorSigma[1, EulerPhi[x]]; Select[ Range[ 1, 10^5], 2 * f[ # ] == Apply[ Plus, Map[ f, Divisors[ # ] ] ] & ]

Extensions

a(6)-a(13) from Amiram Eldar, Sep 26 2019