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!)
A360163 a(n) is the sum of the square roots of the divisors of n that are odd squares. 2
1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 6, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 8, 6, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 6, 1, 1, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,9
COMMENTS
First differs from A336649 at n = 27.
LINKS
FORMULA
a(n) = Sum_{d|n, d odd square} sqrt(d).
a(n) = (A069290(n) + A347176(n))/2.
a(n) = A069290(n) if n is not a multiple of 4.
Multiplicative with a(2^e) = 1, and a(p^e) = (p^(floor(e/2)+1)-1)/(p-1) for p > 2.
Dirichlet g.f.: zeta(s)*zeta(2*s-1)*(1-2^(1-2*s)).
Sum_{k=1..n} a(k) ~ (n/4) * (log(n) + 3*gamma - 1 + 2*log(2)), where gamma is Euler's constant (A001620).
MATHEMATICA
f[p_, e_] := (p^(Floor[e/2] + 1) - 1)/(p - 1); f[2, e_] := 1; a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100]
PROG
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, if(f[i, 1] == 2, 1, (f[i, 1]^(floor(f[i, 2]/2)+1) - 1)/(f[i, 1] - 1))); }
CROSSREFS
Sequence in context: A368169 A367418 A360164 * A336649 A365487 A368172
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Jan 29 2023
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 21 17:21 EDT 2024. Contains 372738 sequences. (Running on oeis4.)