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!)
A360159 a(n) is the sum of divisors of n that are odd squares. 2
1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 26, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 1, 50, 26, 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 26, 1, 1, 1, 1, 1, 91, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,9
LINKS
FORMULA
a(n) = Sum_{d|n, d odd square} d.
a(n) = (A035316(n) + A344300(n))/2.
Multiplicative with a(2^e) = 1, and for p > 2, a(p^e) = (p^(e+2)-1)/(p^2-1) for even e and a(p^e) = (p^(e+1)-1)/(p^2-1) for odd e.
Dirichlet g.f.: zeta(s)*zeta(2s-2)*(1-4^(1-s)).
Sum_{k=1..n} a(k) ~ c * n^(3/2), where c = zeta(3/2)/6 = 0.4353958914... .
MATHEMATICA
f[p_, e_] := (p^(2*(1 + Floor[e/2])) - 1)/(p^2 - 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]^(2*(f[i, 2]\2)+2)-1)/(f[i, 1]^2-1))); }
CROSSREFS
Sequence in context: A367616 A118762 A360160 * A284100 A279051 A332804
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 August 4 08:56 EDT 2024. Contains 374906 sequences. (Running on oeis4.)