login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 08 2000
STATUS
approved