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!)
A348975 a(n) = A003415(n) + A003958(n) - n, where A003415 is the arithmetic derivative and A003958 is fully multiplicative with a(p) = (p-1). 2
0, 0, 0, 1, 0, 1, 0, 5, 1, 1, 0, 6, 0, 1, 1, 17, 0, 7, 0, 8, 1, 1, 0, 22, 1, 1, 8, 10, 0, 9, 0, 49, 1, 1, 1, 28, 0, 1, 1, 32, 0, 11, 0, 14, 10, 1, 0, 66, 1, 11, 1, 16, 0, 35, 1, 42, 1, 1, 0, 40, 0, 1, 12, 129, 1, 15, 0, 20, 1, 13, 0, 88, 0, 1, 12, 22, 1, 17, 0, 100, 43, 1, 0, 52, 1, 1, 1, 62, 0, 49, 1, 26, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
No negative terms. See comments in A322582.
This is the difference between the arithmetic derivative of n [= A003415(n)] and its guaranteed lower bound A322582(n) [= n - A003958(n)].
LINKS
FORMULA
a(n) = A003415(n) - A322582(n).
a(n) = A003958(n) + A168036(n).
MATHEMATICA
MapAt[# + 1 &, Array[If[# < 2, 0, # Total[#2/#1 & @@@ #2]] + Times @@ Map[(#1 - 1)^#2 & @@ # &, #2] - #1 & @@ {#, FactorInteger[#]} &, 95], 1] (* Michael De Vlieger, Mar 15 2022 *)
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A003958(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]--); factorback(f); };
A322582(n) = (n-A003958(n));
A348975(n) = (A003415(n) - A322582(n));
CROSSREFS
Cf. also A348970 for the corresponding difference from a guaranteed upper bound.
Sequence in context: A137373 A220962 A201292 * A271343 A086464 A227577
KEYWORD
nonn,look
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 16 21:46 EDT 2024. Contains 374358 sequences. (Running on oeis4.)