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!)
A347097 a(1) = 2; and for n > 1, a(n) = A341512(n) + A347096(n). 4

%I #9 Aug 20 2021 00:23:41

%S 2,0,0,1,0,4,0,21,4,4,0,110,0,8,8,259,0,224,0,154,16,4,0,1548,4,8,176,

%T 316,0,592,0,2445,8,4,16,4312,0,8,16,2450,0,1216,0,382,640,12,0,15532,

%U 16,408,8,616,0,6708,8,5064,16,4,0,12272,0,12,1312,19543,16,1504,0,754,24,1568,0,50561,0,8,832,1060,16

%N a(1) = 2; and for n > 1, a(n) = A341512(n) + A347096(n).

%C Sum of {the pointwise sum of A341512 and A063524 (1, 0, 0, 0, ...)} and its Dirichlet inverse.

%C The first negative term is a(5760) = -1223227750.

%H <a href="/index/Pri#gaps">Index entries for primes, gaps between</a>

%H <a href="/index/Pri#prime_indices">Index entries for sequences computed from indices in prime factorization</a>

%H <a href="/index/Si#SIGMAN">Index entries for sequences related to sigma(n)</a>

%F a(1) = 2, and for n>1, a(n) = -Sum_{d|n, 1<d<n} A341512(d) * A347096(n/d).

%F For all n >= 1, a(A001248(n)) = A001223(n)^2.

%o (PARI)

%o up_to = 16384;

%o A003961(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); }; \\ From A003961

%o A341512(n) = { my(u=A003961(n)); ((sigma(n)*u) - (n*sigma(u))); };

%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 Aux347096(n) = if(1==n,n,A341512(n));

%o v347096 = DirInverseCorrect(vector(up_to,n,Aux347096(n)));

%o A347096(n) = v347096[n];

%o A347097(n) = if(1==n,2,A341512(n) + A347096(n));

%Y Cf. A000203, A001223, A001248, A003961, A063524, A341512, A347096.

%Y Cf. also A346236, A346240, A347099.

%K sign

%O 1,1

%A _Antti Karttunen_, Aug 19 2021

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 06:44 EDT 2024. Contains 371782 sequences. (Running on oeis4.)