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!)
A332932 Sum of ceiling(sqrt(d)) where d runs through the divisors of n. 6
1, 3, 3, 5, 4, 8, 4, 8, 6, 10, 5, 14, 5, 10, 10, 12, 6, 16, 6, 17, 11, 12, 6, 22, 9, 13, 12, 18, 7, 25, 7, 18, 13, 14, 13, 28, 8, 15, 14, 27, 8, 27, 8, 21, 20, 15, 8, 33, 11, 23, 16, 23, 9, 30, 16, 29, 16, 17, 9, 44, 9, 17, 22, 26, 17, 32, 10, 25, 17, 32, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
a:= n-> add(ceil(sqrt(d)), d=numtheory[divisors](n)):
seq(a(n), n=1..80); # Alois P. Heinz, Mar 02 2020
MATHEMATICA
Table[DivisorSum[n, Ceiling[Sqrt[#]]&], {n, 80}]
PROG
(PARI) a(n) = sumdiv(n, d, ceil(sqrt(d))); \\ Michel Marcus, Mar 03 2020
(Python)
from math import isqrt
from sympy import divisors
def A332932(n): return sum(1+isqrt(d-1) for d in divisors(n, generator=True)) # Chai Wah Wu, Jul 28 2022
CROSSREFS
Sequence in context: A058268 A341729 A087851 * A087852 A087853 A095334
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)