OFFSET
1,2
COMMENTS
a(n) = the least number of divisors of n, taken in increasing order as 1, A020639(n), A292269(n), etc. needed so that their sum is >= n. - Antti Karttunen, Mar 21 2018
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
EXAMPLE
The divisors of 12 are 1,2,3,4,6,12. 1+2+3+4 = 10, which is smaller than 12; but 1+2+3+4+6 = 16, which is >= 12. 6 is the 5th divisor of 12, so a(12) = 5.
MATHEMATICA
f[n_] := Block[{k = 1, d = Divisors[n]}, While[Sum[d[[i]], {i, k}] < n, k++ ]; k]; Table[f[n], {n, 105}] (* Ray Chandler, Dec 06 2006 *)
PROG
(PARI) A125747(n) = { my(k=0, s=0); fordiv(n, d, k++; s += d; if(s>=n, return(k))); }; \\ Antti Karttunen, Mar 21 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Dec 05 2006
EXTENSIONS
Extended by Ray Chandler, Dec 06 2006
STATUS
approved