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!)
A347235 Dirichlet convolution of Euler phi with A342001, where A342001(n) = A003415(n) / A003557(n). 8
0, 1, 1, 3, 1, 8, 1, 7, 4, 12, 1, 21, 1, 16, 14, 15, 1, 27, 1, 33, 18, 24, 1, 47, 6, 28, 13, 45, 1, 87, 1, 31, 26, 36, 22, 69, 1, 40, 30, 75, 1, 119, 1, 69, 51, 48, 1, 99, 8, 63, 38, 81, 1, 84, 30, 103, 42, 60, 1, 219, 1, 64, 67, 63, 34, 183, 1, 105, 50, 183, 1, 153, 1, 76, 75, 117, 34, 215, 1, 159, 40, 84, 1, 303, 42 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = Sum_{d|n} A000010(n/d) * A342001(d).
a(n) = Sum_{k=1..n} A342001(gcd(n,k)). - Antti Karttunen, Sep 02 2021
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A003557(n) = (n/factorback(factorint(n)[, 1]));
A342001(n) = (A003415(n) / A003557(n));
A347235(n) = sumdiv(n, d, eulerphi(d)*A342001(n/d));
(PARI) A347235(n) = sum(k=1, n, A342001(gcd(n, k))); \\ (Slow) - Antti Karttunen, Sep 02 2021
CROSSREFS
Sequence in context: A179393 A347954 A217598 * A347956 A280207 A319045
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 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 May 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)