%I #15 Jul 08 2022 21:40:18
%S 1,0,1,0,1,0,1,0,3,0,2,0,2,0,3,0,3,0,3,0,4,0,4,0,2,0,9,0,5,0,5,0,7,0,
%T 1,0,6,0,8,0,7,0,7,0,9,0,8,0,5,0,11,0,9,0,1,0,12,0,10,0,10,0,12,0,2,0,
%U 11,0,15,0,12,0,12,0,10,0,3,0,13,0,27,0,14,0,2,0,19,0,15,0,4,0,20,0,3,0,16,0,21
%N Dirichlet convolution of A003602 (Kimberling's paraphrases) with A323881 (the Dirichlet inverse of A126760).
%C Taking the Dirichlet convolution between this sequence and A349393 gives A349371, and similarly for many other such analogous pairs.
%H Antti Karttunen, <a href="/A353461/b353461.txt">Table of n, a(n) for n = 1..65537</a>
%F a(n) = Sum_{d|n} A003602(d) * A323881(n/d).
%F a(n) = A353462(n) - A353460(n).
%o (PARI)
%o up_to = 65537;
%o A003602(n) = (1+(n>>valuation(n,2)))/2;
%o A126760(n) = {n&&n\=3^valuation(n, 3)<<valuation(n, 2); n%3+n\6*2}; \\ From A126760
%o DirInverseCorrect(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = (-u[1])*sumdiv(n, d, if(d<n, v[n/d]*u[d], 0))); (u) }; \\ Compute the Dirichlet inverse of the sequence given in input vector v
%o v323881 = DirInverseCorrect(vector(up_to,n,A126760(n)));
%o A323881(n) = v323881[n];
%o A353461(n) = sumdiv(n,d,A003602(d)*A323881(n/d));
%Y Cf. A003602, A126760, A323881, A353460 (Dirichlet inverse), A353462 (sum with it).
%Y Cf. also A349371, A349393.
%K sign
%O 1,9
%A _Antti Karttunen_, Apr 20 2022