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!)
A361063 Multiplicative with a(p^e) = sigma_2(e), where sigma_2 = A001157. 2
1, 1, 1, 5, 1, 1, 1, 10, 5, 1, 1, 5, 1, 1, 1, 21, 1, 5, 1, 5, 1, 1, 1, 10, 5, 1, 10, 5, 1, 1, 1, 26, 1, 1, 1, 25, 1, 1, 1, 10, 1, 1, 1, 5, 5, 1, 1, 21, 5, 5, 1, 5, 1, 10, 1, 10, 1, 1, 1, 5, 1, 1, 5, 50, 1, 1, 1, 5, 1, 1, 1, 50, 1, 1, 5, 5, 1, 1, 1, 21, 21, 1, 1, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
Dirichlet g.f.: Product_{primes p} (1 + Sum_{e>=1} sigma_2(e) / p^(e*s)).
Sum_{k=1..n} a(k) ~ c * n, where c = Product_{p prime} (1 + Sum_{e>=2} (sigma_2(e) - sigma_2(e-1)) / p^e) = 11.343154585178523783556367128387762286267199879648613456124659589127638983...
MATHEMATICA
g[p_, e_] := DivisorSigma[2, e]; a[1] = 1; a[n_] := Times @@ g @@@ FactorInteger[n]; Array[a, 100]
PROG
(Python)
from math import prod
from sympy import factorint, divisor_sigma
def A361063(n): return prod(divisor_sigma(e, 2) for e in factorint(n).values()) # Chai Wah Wu, Mar 01 2023
CROSSREFS
Sequence in context: A140210 A360720 A010130 * A363972 A206773 A229526
KEYWORD
nonn,mult
AUTHOR
Vaclav Kotesovec, Mar 01 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 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)