OFFSET
1,1
COMMENTS
On a suggestion of Jordi Domènech i Arnau. Is 34155 the only odd number in this sequence?
34155 is the only odd term < 2*10^11. - Donovan Johnson, Apr 18 2012
Also composite numbers such that the sum of the reciprocals of the divisors <= sqrt(n) is an integer. - Michel Lagneau, Mar 03 2014
From Amiram Eldar, Sep 14 2019: (Start)
If k is a perfect number (A000396) and p > k is a prime then k * p is in the sequence.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Discussion on MathForum (in Spanish), March 2003.
EXAMPLE
The proper divisors of 42 greater than sqrt(42) are 7, 14 and 21, and 7 + 14 + 21 = 42.
MATHEMATICA
d[n_] := Select[Most[Divisors[n]], # > Sqrt[n] &]; Select[Range[2, 2000], # == Total[d[#]] &] (* T. D. Noe, Apr 16 2012 *)
PROG
(Haskell)
a182147 n = a182147_list !! (n-1)
a182147_list = [w | w <- [1..] , sum (dropWhile (<= a000196 w) $
a027751_row $ fromInteger w) == w]
-- Reinhard Zumkeller, Apr 18 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Claudio Meller, Apr 14 2012
STATUS
approved