OFFSET
1,2
COMMENTS
Largest term of A263837 that divides n.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..20000
EXAMPLE
For n=10, which is a non-abundant number because sigma(10) = 18 < 2*10, its greatest divisor that is not abundant is 10 itself, thus a(10) = 10.
For n=12, which is an abundant number because sigma(12) = 28 > 2*12, its greatest divisor that itself is not abundant is 6, as sigma(6) = 12. Thus a(12) = 6.
MATHEMATICA
a[n_]:=Max[Select[Divisors[n], DivisorSigma[1, #]<=2# &]]; Array[a, 84] (* Stefano Spezia, Dec 06 2024 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 06 2024
STATUS
approved