A344178 Difference between the arithmetic derivative of n and the cototient of n: a(n) = A003415(n) - A051953(n).
0, 0, 0, 2, 0, 1, 0, 8, 3, 1, 0, 8, 0, 1, 1, 24, 0, 9, 0, 12, 1, 1, 0, 28, 5, 1, 18, 16, 0, 9, 0, 64, 1, 1, 1, 36, 0, 1, 1, 44, 0, 11, 0, 24, 18, 1, 0, 80, 7, 15, 1, 28, 0, 45, 1, 60, 1, 1, 0, 48, 0, 1, 24, 160, 1, 15, 0, 36, 1, 13, 0, 108, 0, 1, 20, 40, 1, 17, 0, 128, 81, 1, 0, 64, 1, 1, 1, 92, 0, 57, 1, 48, 1, 1, 1, 208
Offset: 1
Keywords
Links
- Antti Karttunen, Table of n, a(n) for n = 1..10000
- Antti Karttunen, Data supplement: n, a(n) computed for n = 1..65537
Crossrefs
Programs
-
Mathematica
Array[If[# < 2, 0, # Total[#2/#1 & @@@ FactorInteger[#]]] - # + EulerPhi[#] &, 96] (* Michael De Vlieger, May 24 2021 *)
-
PARI
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1])); A344178(n) = A003415(n) - (n-eulerphi(n));
Comments