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.

A066365 f-perfect numbers, where f(m) = sigma(m)-m.

Original entry on oeis.org

1, 1134, 1476, 1530, 16600, 282555
Offset: 1

Views

Author

Joseph L. Pe, Dec 21 2001

Keywords

Comments

f-perfect numbers for an arithmetical function f is defined in A066218.
Also, numbers m such that 3*sigma(m)-2*m = A007429(m). - Max Alekseyev, Jul 30 2025

Crossrefs

Programs

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

Extensions

Edited and a(1)=1 inserted by Max Alekseyev, Jul 30 2025