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!)
A349712 a(n) = Sum_{d|n} sopf(d) * sopf(n/d). 2
0, 0, 0, 4, 0, 12, 0, 8, 9, 20, 0, 32, 0, 28, 30, 12, 0, 42, 0, 48, 42, 44, 0, 52, 25, 52, 18, 64, 0, 124, 0, 16, 66, 68, 70, 87, 0, 76, 78, 76, 0, 164, 0, 96, 78, 92, 0, 72, 49, 90, 102, 112, 0, 72, 110, 100, 114, 116, 0, 234, 0, 124, 102, 20, 130, 244, 0, 144, 138, 236, 0, 132, 0, 148, 110 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Dirichlet convolution of A008472 with itself.
LINKS
FORMULA
Dirichlet g.f.: ( zeta(s) * primezeta(s-1) )^2.
a(n) = Sum_{d|n} A061397(d) * A319131(n/d).
a(p) = 0 for p prime. - Michael S. Branicky, Nov 26 2021
a(p^k) = (k-1)*p^2 for p prime and k > 0. - Chai Wah Wu, Nov 28 2021
MATHEMATICA
sopf[n_] := DivisorSum[n, # &, PrimeQ[#] &]; a[n_] := Sum[sopf[d] sopf[n/d], {d, Divisors[n]}]; Table[a[n], {n, 1, 75}]
PROG
(PARI) sopf(n) = vecsum(factor(n)[, 1]); \\ A008472
a(n) = sumdiv(n, d, sopf(d)*sopf(n/d)); \\ Michel Marcus, Nov 26 2021
(Python)
from sympy import divisors, factorint
def sopf(n): return sum(factorint(n))
def a(n): return sum(sopf(d)*sopf(n//d) for d in divisors(n))
print([a(n) for n in range(1, 76)]) # Michael S. Branicky, Nov 26 2021
CROSSREFS
Sequence in context: A298706 A369911 A260490 * A349711 A167296 A147607
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 26 2021
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 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)