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!)
A332934 Sum of round(d^(3/2)) where d runs through the divisors of n. 6
1, 4, 6, 12, 12, 24, 20, 35, 33, 47, 37, 74, 48, 75, 75, 99, 71, 127, 84, 144, 121, 143, 111, 215, 137, 184, 173, 231, 157, 289, 174, 280, 232, 272, 238, 393, 226, 321, 297, 420, 264, 463, 283, 443, 404, 426, 323, 612, 363, 526, 440, 567, 387, 664, 456, 673 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
a:= n-> add(round(d^(3/2)), d=numtheory[divisors](n)):
seq(a(n), n=1..60); # Alois P. Heinz, Mar 02 2020
MATHEMATICA
Table[DivisorSum[n, Floor[1/2+Sqrt[#^3]]&], {n, 80}]
PROG
(Python)
from math import isqrt
from sympy import divisors
def A332934(n): return sum((m:=isqrt(r:=d**3))+int(r-m*(m+1)>=1) for d in divisors(n, generator=True)) # Chai Wah Wu, Aug 03 2022
CROSSREFS
Sequence in context: A038040 A143356 A058270 * A058199 A289535 A310592
KEYWORD
nonn
AUTHOR
Harvey P. Dale, Mar 02 2020
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)