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.
5, 7, 11, 49, 169
Offset: 1
Links
- J. Pe, On a Generalization of Perfect Numbers, J. Rec. Math., 31(3) (2002-2003), 168-172.
Programs
-
Mathematica
f[x_] := Floor[Prime[x] / x]; Select[ Range[2, 10^3], 2 * f[ # ] == Apply[ Plus, Map[ f, Divisors[ # ] ] ] & ]
Comments