The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A264740 Sum of odd parts of divisors of n. 3
1, 2, 4, 3, 6, 8, 8, 4, 13, 12, 12, 12, 14, 16, 24, 5, 18, 26, 20, 18, 32, 24, 24, 16, 31, 28, 40, 24, 30, 48, 32, 6, 48, 36, 48, 39, 38, 40, 56, 24, 42, 64, 44, 36, 78, 48, 48, 20, 57, 62, 72, 42, 54, 80, 72, 32, 80, 60, 60, 72, 62, 64, 104, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
It is easy to show that a(n) is odd iff n is a square.
a(n) = sigma(n) for odd n, since any divisor of an odd number is odd.
LINKS
FORMULA
Multiplicative with a(2^k) = k + 1, a(p^k) = sigma(p^k) = (p^(k+1)-1) / (p-1) for p > 2.
Sum_{k=1..n} a(k) ~ c * n^2, where c = Pi^2/18 = 0.548311... (A086463). - Amiram Eldar, Nov 04 2022
a(n) = Sum_{d|n} A000265(d). - Ridouane Oudra, Oct 30 2023
EXAMPLE
Divisors of 10 are 1, 2, 5, 10. The odd parts of these are 1, 1, 5, 5, so a(10) = 1+1+5+5 = 12.
MAPLE
with(numtheory): with(padic): seq(add(d/2^ordp(d, 2), d in divisors(n)), n=1..80); # Ridouane Oudra, Oct 30 2023
MATHEMATICA
f[p_, e_] := If[p == 2, e + 1, (p^(e + 1) - 1)/(p - 1)]; a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* Amiram Eldar, Jun 30 2020 *)
PROG
(PARI) a(n)=my(k=valuation(n, 2)); sigma(n)\(2^(k+1)-1)*(k+1)
(Haskell)
a264740 = sum . map a000265 . a027750_row'
-- Reinhard Zumkeller, Nov 23 2015
CROSSREFS
Sequence in context: A364884 A369825 A266411 * A349370 A137621 A242705
KEYWORD
nonn,look,mult
AUTHOR
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 May 17 19:01 EDT 2024. Contains 372603 sequences. (Running on oeis4.)