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!)
A348976 Möbius transform of A129283, which is sum of n and its arithmetic derivative. 5
1, 2, 3, 5, 5, 5, 7, 12, 11, 9, 11, 12, 13, 13, 14, 28, 17, 17, 19, 22, 20, 21, 23, 28, 29, 25, 39, 32, 29, 22, 31, 64, 32, 33, 34, 40, 37, 37, 38, 52, 41, 32, 43, 52, 50, 45, 47, 64, 55, 49, 50, 62, 53, 57, 54, 76, 56, 57, 59, 52, 61, 61, 72, 144, 64, 52, 67, 82, 68, 58, 71, 92, 73, 73, 78, 92, 76, 62, 79, 120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} A008683(n/d) * A129283(d).
a(n) = A000010(n) + A300251(n).
MATHEMATICA
f[p_, e_] := e/p; d[1] = 1; d[n_] := n*(1 + Plus @@ f @@@ FactorInteger[n]); a[n_] := DivisorSum[n, MoebiusMu[#]*d[n/#] &]; Array[a, 100] (* Amiram Eldar, Nov 13 2021 *)
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A129283(n) = (n+A003415(n));
A348976(n) = sumdiv(n, d, moebius(n/d)*A129283(d));
CROSSREFS
Sequence in context: A246401 A003660 A065688 * A169787 A165959 A347784
KEYWORD
nonn
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)