OFFSET
1,2
COMMENTS
A divisor of n other than 1 or n is called nontrivial.
EXAMPLE
There are two ways to write 12 as a product of two nontrivial divisors, i.e., 6*2 and 4*3. Since 8=6+2>4+3=7, we have a(12)=8.
MATHEMATICA
Table[If[Length[Divisors[n]] > 2, Max[Table[Divisors[n][[j]] + n/Divisors[n][[j]], {j, 2, Length[Divisors[n]] - 1}]], n], {n, 1, 100}] (* Stefan Steinerberger, Feb 04 2008 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Joseph L. Pe, Feb 01 2008
EXTENSIONS
More terms from Stefan Steinerberger, Feb 04 2008
STATUS
approved