|
Search: id:A066839
|
|
|
| A066839 |
|
Sum of positive divisors k of n where k <= sqrt(n). |
|
+0 7
|
|
| 1, 1, 1, 3, 1, 3, 1, 3, 4, 3, 1, 6, 1, 3, 4, 7, 1, 6, 1, 7, 4, 3, 1, 10, 6, 3, 4, 7, 1, 11, 1, 7, 4, 3, 6, 16, 1, 3, 4, 12, 1, 12, 1, 7, 9, 3, 1, 16, 8, 8, 4, 7, 1, 12, 6, 14, 4, 3, 1, 21, 1, 3, 11, 15, 6, 12, 1, 7, 4, 15, 1, 24, 1, 3, 9, 7, 8, 12, 1, 20, 13, 3, 1, 23, 6, 3, 4, 15, 1, 26, 8, 7, 4, 3
(list; graph; listen)
|
|
|
OFFSET
|
1,4
|
|
|
LINKS
|
Leroy Quet, Home Page (listed in lieu of email address)
|
|
FORMULA
|
G.f.: Sum_{k>0} k x^(k^2)/(1-x^k) . - Michael Somos Nov 19 2005
|
|
EXAMPLE
|
a(9) = 4 = 1 + 3 because 1 and 3 are the positive divisors of 9 that are <= sqrt(9).
a(20) = 7: the divisors of 20 are 1,2,4,5,10 and 20. a(20) = 1 + 2 + 4= 7.
|
|
MAPLE
|
with(numtheory):for n from 1 to 200 do c[n] := 0:d := divisors(n):for i from 1 to nops(d) do if d[i]<=n^.5+10^(-10) then c[n] := c[n]+d[i]:fi:od:od:seq(c[i], i=1..200);
|
|
PROGRAM
|
(PARI) a(n)=if(n<1, 0, sumdiv(n, d, (d^2<=n)*d)) /* Michael Somos Nov 19 2005 */
|
|
CROSSREFS
|
Cf. A070038.
Sequence in context: A001319 A110919 A109599 this_sequence A046933 A023511 A035628
Adjacent sequences: A066836 A066837 A066838 this_sequence A066840 A066841 A066842
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Leroy Quet Jan 20 2002
|
|
EXTENSIONS
|
More terms from Larry Reeves (larryr(AT)acm.org), Apr 12 2002
|
|
|
Search completed in 0.002 seconds
|