OFFSET
1,2
COMMENTS
Sequences A117346 through A117350 are an attempt to improve on sequences A045768 through A045770, A077374, A087167, A087485 and A088007 through A088012 and related sequences (but not to replace them) by using a more significant definition of "near." E.g., is sigma(n) really "near" a multiple of n, for n=9? Or n=18? Sigma is the sum_of_divisors function.
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, B2.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Multiperfect Number.
EXAMPLE
70 is in the sequence because sigma(70) = 144 = 2*70 + 4, while 4 < log(70) ~= 4.248.
MATHEMATICA
asmlQ[n_]:=Module[{p=Mod[DivisorSigma[1, n], n]}, If[p>n/2, p=n-p]; p<=Log[n]];
Select[Range[200], asmlQ] (* Harvey P. Dale, Dec 25 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Walter Nissen, Mar 09 2006
EXTENSIONS
First term prepended by Harvey P. Dale, Dec 25 2013
STATUS
approved