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!)
A058273 An approximation to sigma_{5/2}(n): round( sum_{d|n} d^(5/2) ). 3

%I #8 Jan 14 2023 08:45:49

%S 1,7,17,39,57,110,131,220,260,379,402,641,610,870,944,1244,1193,1728,

%T 1575,2200,2167,2678,2538,3644,3182,4063,4048,5050,4530,6283,5352,

%U 7036,6674,7939,7434,10035,8328,10482,10125,12500,10765,14426

%N An approximation to sigma_{5/2}(n): round( sum_{d|n} d^(5/2) ).

%H Amiram Eldar, <a href="/A058273/b058273.txt">Table of n, a(n) for n = 1..10000</a>

%F Sum_{k=1..n} a(k) ~ (2/7)*zeta(7/2) * n^(7/2). - _Amiram Eldar_, Jan 14 2023

%p 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)

%t a[n_] := Round[DivisorSigma[5/2, n]]; Array[a, 50] (* _Amiram Eldar_, Jan 14 2023 *)

%Y Cf. A000203, A001157, A058272, A058274, A261804.

%K nonn

%O 1,2

%A _N. J. A. Sloane_, Dec 08 2000

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 29 05:48 EDT 2024. Contains 371265 sequences. (Running on oeis4.)