The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A347096 a(1) = 1; a(n) = -Sum_{d|n, d < n} A341512(n/d) * a(d), where A341512(n) = sigma(n)*A003961(n) - n*sigma(A003961(n)). 4

%I #11 Nov 15 2021 03:39:57

%S 1,-1,-2,-10,-2,-32,-4,-64,-42,-54,-2,-214,-4,-112,-112,-316,-2,-469,

%T -4,-412,-232,-168,-6,-792,-90,-262,-612,-860,-2,-1208,-6,-1216,-340,

%U -354,-320,-1655,-4,-484,-532,-1760,-2,-2528,-4,-1438,-1850,-732,-6,160,-364,-1863,-712,-2210,-6,-4596,-384,-3696,-976,-942,-2

%N a(1) = 1; a(n) = -Sum_{d|n, d < n} A341512(n/d) * a(d), where A341512(n) = sigma(n)*A003961(n) - n*sigma(A003961(n)).

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

%H Antti Karttunen, <a href="/A347096/b347096.txt">Table of n, a(n) for n = 1..10000</a>

%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) = 1; and for n > 1, a(n) = -Sum_{d|n, d < n} A341512(n/d) * a(d).

%F For all n >= 1, a(A000040(n)) = -A001223(n).

%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];

%Y Cf. A000203, A001223, A003961, A063524, A341512, A347097.

%Y Cf. also A346235, A346239.

%K sign,look

%O 1,3

%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 May 20 06:19 EDT 2024. Contains 372703 sequences. (Running on oeis4.)