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!)
A332935 Sum of ceiling(n^(3/2)) where d runs through the divisors of n. 6
1, 4, 7, 12, 13, 25, 20, 35, 34, 48, 38, 75, 48, 76, 78, 99, 72, 129, 84, 146, 123, 145, 112, 216, 138, 184, 175, 233, 158, 293, 174, 281, 234, 274, 240, 395, 227, 322, 298, 422, 264, 467, 283, 445, 407, 427, 324, 613, 363, 527, 443, 567, 387, 667, 458, 676 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
a:= n-> add(ceil(d^(3/2)), d=numtheory[divisors](n)):
seq(a(n), n=1..60); # Alois P. Heinz, Mar 02 2020
MATHEMATICA
Table[DivisorSum[n, Ceiling[Sqrt[#^3]]&], {n, 80}]
PROG
(PARI) a(n)={sumdiv(n, d, 1 + sqrtint(d^3 - 1))} \\ Andrew Howroyd, Mar 02 2020
(Python)
from math import isqrt
from sympy import divisors
def A332935(n): return sum(1+isqrt(d**3-1) for d in divisors(n, generator=True)) # Chai Wah Wu, Aug 03 2022
CROSSREFS
Sequence in context: A310769 A344598 A058271 * A244590 A310770 A268816
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)