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.

A066361 The floor(n^(.9999))-perfect numbers, where f-perfect numbers for an arithmetical function f is defined in A066218.

Original entry on oeis.org

2, 18, 17816, 116624
Offset: 1

Views

Author

Joseph L. Pe, Dec 20 2001

Keywords

Comments

Despite the closeness of f(n) = floor(n^(.9999)) to floor(n) (which generates the usual perfect numbers), the perfect numbers generated by these functions are quite different.

Crossrefs

Cf. A066218.

Programs

  • Mathematica
    f[x_] := Floor[x^(.9999)]; Select[ Range[2, 10^6], 2 * f[ # ] == Apply[ Plus, Map[ f, Divisors[ # ] ] ] & ]