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!)
A058274 An approximation to sigma_{5/2}(n): ceiling( sum_{d|n} d^(5/2) ). 3
1, 7, 17, 39, 57, 111, 131, 220, 260, 379, 403, 642, 611, 870, 944, 1244, 1193, 1729, 1575, 2200, 2168, 2679, 2538, 3645, 3182, 4063, 4048, 5051, 4530, 6284, 5352, 7037, 6674, 7939, 7434, 10035, 8329, 10482, 10125, 12500, 10765, 14427 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Sum_{k=1..n} a(k) ~ (2/7)*zeta(7/2) * n^(7/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^(5/2) end do; t2; end proc; # exact value of sigma_{5/2}(n)
MATHEMATICA
a[n_] := Ceiling[DivisorSigma[5/2, n]]; Array[a, 50] (* Amiram Eldar, Jan 14 2023 *)
CROSSREFS
Sequence in context: A298369 A213789 A058273 * A322597 A360428 A193214
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 March 19 01:34 EDT 2024. Contains 370952 sequences. (Running on oeis4.)