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!)
A323895 Dirichlet inverse of binary Gray code, A003188. 2
1, -3, -2, 3, -7, 7, -4, -3, -9, 27, -14, -10, -11, 15, 20, 3, -25, 35, -26, -45, -15, 55, -28, 13, 28, 43, 22, -24, -19, -91, -16, -3, 7, 99, 6, -58, -55, 103, -8, 63, -61, 55, -62, -94, 71, 111, -56, -16, -25, -148, 58, -73, -47, -107, 152, 33, 67, 75, -38, 196, -35, 63, 148, 3, 57, -53, -98, -171, 9, -59, -100, 78, -109, 219, -208, -178, 5, 13 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
PROG
(PARI)
up_to = 16384;
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 (correctly!)
A003188(n) = bitxor(n, n>>1);
v323895 = DirInverseCorrect(vector(up_to, n, A003188(n)));
A323895(n) = v323895[n];
CROSSREFS
Sequence in context: A071010 A343231 A215934 * A274508 A347112 A227104
KEYWORD
sign,look
AUTHOR
Antti Karttunen, Feb 08 2019
STATUS
approved

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 June 6 04:28 EDT 2024. Contains 373115 sequences. (Running on oeis4.)