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!)
A349130 a(n) = Sum_{d|n} d * A003958(n/d), where A003958 is fully multiplicative with a(p) = (p-1). 7
1, 3, 5, 7, 9, 15, 13, 15, 19, 27, 21, 35, 25, 39, 45, 31, 33, 57, 37, 63, 65, 63, 45, 75, 61, 75, 65, 91, 57, 135, 61, 63, 105, 99, 117, 133, 73, 111, 125, 135, 81, 195, 85, 147, 171, 135, 93, 155, 127, 183, 165, 175, 105, 195, 189, 195, 185, 171, 117, 315, 121, 183, 247, 127, 225, 315, 133, 231, 225, 351, 141 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Dirichlet convolution of A003958 with the identity function, A000027.
Dirichlet convolution of sigma (A000203) with A003966.
LINKS
FORMULA
a(n) = Sum_{d|n} d * A003958(n/d).
a(n) = Sum_{d|n} A349131(d).
a(n) = Sum_{d|n} A000203(d) * A003966(n/d).
a(n) = A038040(n) - A348980(n).
For all n >= 1, a(n) <= A349129(n) <= A349170(n).
Multiplicative with a(p^e) = p^(e+1) - (p-1)^(e+1). - Amiram Eldar, Nov 09 2021
MATHEMATICA
f[p_, e_] := p^(e + 1) - (p - 1)^(e + 1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Nov 09 2021 *)
PROG
(PARI)
A003958(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]--); factorback(f); };
A349130(n) = sumdiv(n, d, d*A003958(n/d));
CROSSREFS
Sequence in context: A029608 A211135 A145388 * A357148 A268496 A121820
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Nov 09 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 July 26 16:03 EDT 2024. Contains 374635 sequences. (Running on oeis4.)