Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Jun 28 2024 21:10:51
%S 0,0,1,2,4,1,7,1,12,12,1,1,20,1,1,1,32,1,33,1,4,1,1,1,52,10,1,54,4,1,
%T 1,1,80,1,1,4,84,1,1,1,4,1,1,1,4,3,1,1,128,14,5,1,4,1,135,4,4,1,1,1,4,
%U 1,1,3,192,6,1,1,4,1,1,1,204,1,1,10,4,2,1,1,16,216,1,1,4,6,1,1,4,1,3,360,4,1,1,24,304,1,7,3,20
%N a(n) = gcd(A328768(n), A328845(n)), where A328768 is the first primorial based variant and A328845 is the first Fibonacci-based variant of the arithmetic derivative, respectively.
%H Antti Karttunen, <a href="/A374116/b374116.txt">Table of n, a(n) for n = 0..100000</a>
%o (PARI)
%o A002110(n) = prod(i=1,n,prime(i));
%o A328768(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]*A002110(primepi(f[i,1])-1)/f[i, 1]));
%o A328845(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]*fibonacci(f[i,1])/f[i, 1]));
%o A374116(n) = gcd(A328768(n), A328845(n));
%Y Cf. A328768, A328845.
%Y Cf. also A374035, A374106.
%K nonn
%O 0,4
%A _Antti Karttunen_, Jun 28 2024