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!)
A324640 Dirichlet inverse of the Doudna sequence, A005940. 4

%I #10 Mar 11 2019 20:47:22

%S 1,-2,-3,0,-5,6,-9,0,2,10,-15,0,-25,18,3,0,-11,-4,-21,0,19,30,-45,0,

%T -24,50,-60,0,-125,-6,-81,0,77,22,57,0,-55,42,87,0,-77,-38,-105,0,-78,

%U 90,-135,0,-40,48,-81,0,-245,120,-75,0,-217,250,-375,0,-625,162,-150,0,233,-154,-39,0,205,-114,-99,0,-91,110,174,0,-5,-174,-189,0

%N Dirichlet inverse of the Doudna sequence, A005940.

%H Antti Karttunen, <a href="/A324640/b324640.txt">Table of n, a(n) for n = 1..16384</a>

%F a(1) = 1; for n > 1, a(n) = -Sum_{d|n, d<n} a(d) * A005940(n/d).

%F a(p) = -A005940(p) for all primes p.

%o (PARI)

%o up_to = 16384;

%o DirInverse(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = -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 A005940(n) = { my(p=2, t=1); n--; until(!n\=2, if((n%2), (t*=p), p=nextprime(p+1))); t }; \\ From A005940

%o v324640 = DirInverse(vector(up_to,n,A005940(n)));

%o A324640(n) = v324640[n];

%Y Cf. A005940, A324106, A324641.

%K sign

%O 1,2

%A _Antti Karttunen_, Mar 11 2019

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 16 03:59 EDT 2024. Contains 371696 sequences. (Running on oeis4.)