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!)
A347132 a(n) = Sum_{d|n} A001615(n/d) * A003415(d), where A003415 is the arithmetic derivative and A001615 is Dedekind psi function. 7
0, 1, 1, 7, 1, 12, 1, 30, 10, 16, 1, 65, 1, 20, 18, 104, 1, 83, 1, 93, 22, 28, 1, 254, 16, 32, 63, 121, 1, 167, 1, 320, 30, 40, 26, 391, 1, 44, 34, 374, 1, 215, 1, 177, 143, 52, 1, 840, 22, 165, 42, 205, 1, 450, 34, 494, 46, 64, 1, 827, 1, 68, 183, 912, 38, 311, 1, 261, 54, 295, 1, 1430, 1, 80, 197, 289, 38, 359 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Dirichlet convolution of Dedekind psi function (A001615) with the arithmetic derivative (A003415).
LINKS
FORMULA
a(n) = Sum_{d|n} A001615(n/d) * A003415(d).
MATHEMATICA
Table[DivisorSum[n, DirichletConvolve[j, MoebiusMu[j]^2, j, n/#]*If[# < 2, 0, # Total[#2/#1 & @@@ FactorInteger[#]]] &], {n, 78}] (* Michael De Vlieger, Oct 19 2021, after Jan Mangaldan at A001615 *)
PROG
(PARI)
A001615(n) = if(1==n, n, my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1))); \\ After code in A001615
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A347132(n) = sumdiv(n, d, A001615(n/d)*A003415(d));
CROSSREFS
Sequence in context: A343227 A339965 A364094 * A349173 A347965 A013600
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 23 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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)