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!)
A348980 a(n) = Sum_{d|n} d * A322582(n/d), where A322582(n) = n - A003958(n), and A003958 is fully multiplicative with a(p) = (p-1). 7
0, 1, 1, 5, 1, 9, 1, 17, 8, 13, 1, 37, 1, 17, 15, 49, 1, 51, 1, 57, 19, 25, 1, 117, 14, 29, 43, 77, 1, 105, 1, 129, 27, 37, 23, 191, 1, 41, 31, 185, 1, 141, 1, 117, 99, 49, 1, 325, 20, 117, 39, 137, 1, 237, 31, 253, 43, 61, 1, 405, 1, 65, 131, 321, 35, 213, 1, 177, 51, 209, 1, 579, 1, 77, 145, 197, 35, 249, 1, 521 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Dirichlet convolution of A322582 with the identity function, A000027.
LINKS
FORMULA
a(n) = Sum_{d|n} d * A322582(n/d).
For all n >= 1, a(n) <= A347130(n) <= A349140(n).
a(n) = A038040(n) - A349130(n). - Antti Karttunen, Nov 14 2021
MATHEMATICA
f[p_, e_] := (p - 1)^e; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; a[n_] := DivisorSum[n, #*(n/# - s[n/#]) &]; Array[a, 100] (* Amiram Eldar, Nov 08 2021 *)
PROG
(PARI)
A003958(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]--); factorback(f); };
A322582(n) = (n-A003958(n));
A348980(n) = sumdiv(n, d, d*A322582(n/d));
CROSSREFS
Cf. A000027, A003958, A038040, A322582, A348981 (Möbius transform), A348982, A348983, A349130.
Cf. also A347130, A349140.
Sequence in context: A266072 A147423 A147085 * A046580 A050358 A147319
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 08 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 27 07:11 EDT 2024. Contains 372009 sequences. (Running on oeis4.)