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.

A066367 The floor(prime(n)/n)-perfect numbers, where prime(n) denotes the n-th prime and f-perfect numbers for an arithmetical function f are defined in A066218.

Original entry on oeis.org

5, 7, 11, 49, 169
Offset: 1

Views

Author

Joseph L. Pe, Dec 21 2001

Keywords

Comments

There do not seem to be any more terms. There are no terms between 170 and 10^5.

Crossrefs

Programs

  • Mathematica
    f[x_] := Floor[Prime[x] / x]; Select[ Range[2, 10^3], 2 * f[ # ] == Apply[ Plus, Map[ f, Divisors[ # ] ] ] & ]