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!)
A058268 An approximation to sigma_{1/2}(n): ceiling( sum_{d|n} sqrt(d) ). 4
1, 3, 3, 5, 4, 7, 4, 8, 6, 8, 5, 13, 5, 9, 9, 12, 6, 14, 6, 15, 10, 11, 6, 20, 9, 12, 11, 17, 7, 22, 7, 17, 12, 13, 12, 26, 8, 13, 13, 24, 8, 25, 8, 20, 19, 14, 8, 31, 11, 20, 14, 21, 9, 27, 14, 27, 15, 16, 9, 40, 9, 16, 21, 25, 15, 29, 10, 23, 16, 29, 10, 42 (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)
MATHEMATICA
a[n_] := Ceiling[DivisorSigma[1/2, n]]; Array[a, 70] (* Amiram Eldar, Jan 14 2023 *)
CROSSREFS
Sequence in context: A090104 A333822 A075795 * A341729 A087851 A332932
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)