OFFSET
1,1
COMMENTS
All terms are even. All even perfect squares are included. If m is included, then 4m is also included.
Also the set of all numbers m of the form m = r*s*(r+s)^2*t^2 with positive integers r,s,t; if one additionally requires (r,s) = 1 and r <= s, then there is exactly one such representation for each m. [From Hagen von Eitzen, Jul 22 2009]
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
72 is included because 6 is a divisor of 72 and (6 + 72/6) = 18 divides 72.
MATHEMATICA
nkdQ[n_]:=Module[{divs=Most[Divisors[n]]}, MemberQ[Divisible[n, #]&/@ (#+n/#&/@ divs), True]]; Select[Range[2000], nkdQ] (* Harvey P. Dale, Apr 24 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, May 01 2008
EXTENSIONS
Extended by Ray Chandler, Jul 01 2009
STATUS
approved