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!)
A058269 An approximation to sigma_{3/2}(n): floor( sum_{d|n} d^(3/2) ). 4
1, 3, 6, 11, 12, 23, 19, 34, 33, 46, 37, 73, 47, 74, 75, 98, 71, 127, 83, 144, 120, 143, 111, 213, 137, 183, 173, 230, 157, 288, 173, 279, 232, 272, 237, 392, 226, 320, 296, 419, 263, 463, 282, 443, 404, 426, 323, 610, 362, 525, 440, 566, 386 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Sum_{k=1..n} a(k) ~ (2/5)*zeta(5/2) * n^(5/2). - Amiram Eldar, Jan 14 2023
MAPLE
f := proc(n) local d, t1, t2; t2 := 0; t1 := divisors(n); for d in t1 do t2 := t2 + d^(3/2) end do; t2; end proc; # exact value of sigma_{3/2}(n)
MATHEMATICA
a[n_] := Floor[DivisorSigma[3/2, n]]; Array[a, 50] (* Amiram Eldar, Jan 14 2023 *)
CROSSREFS
Sequence in context: A332933 A115821 A115767 * A342273 A310088 A073942
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.)