login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A058266 An approximation to sigma_{1/2}(n): floor( sum_{ d divides n } sqrt(d) ). 4
1, 2, 2, 4, 3, 6, 3, 7, 5, 7, 4, 12, 4, 8, 8, 11, 5, 13, 5, 14, 9, 10, 5, 19, 8, 11, 10, 16, 6, 21, 6, 16, 11, 12, 11, 25, 7, 12, 12, 23, 7, 24, 7, 19, 18, 13, 7, 30, 10, 19, 13, 20, 8, 26, 13, 26, 14, 15, 8, 39, 8, 15, 20, 24, 14, 28, 9, 22, 15, 28, 9, 41, 9 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Sum_{k=1..n} a(k) ~ (2/3)*zeta(3/2) * n^(3/2). - Amiram Eldar, Jan 14 2023
MAPLE
with(numtheory); f := proc(n) local d, t1, t2; t2 := 0; t1 := divisors(n); for d in t1 do t2 := t2 + sqrt(d) end do; t2 end proc; # exact value of sigma_{1/2}(n)
with(numtheory):seq(floor(sigma[1/2](n)), n=1..80);
MATHEMATICA
f[n_] := Floor@DivisorSigma[1/2, n]; Array[f, 73] (* Robert G. Wilson v, Aug 17 2017*)
PROG
(PARI) a(n) = floor(sumdiv(n, d, sqrt(d))); \\ Michel Marcus, Aug 17 2017
CROSSREFS
Sequence in context: A122811 A089173 A126090 * A138664 A140357 A352622
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 08 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)