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!)
A297110 Xor-Moebius transform of A006068, inverse of the binary Gray code. 4
1, 2, 3, 4, 7, 4, 4, 8, 12, 8, 12, 8, 8, 12, 15, 16, 31, 20, 28, 16, 31, 20, 27, 16, 23, 24, 28, 24, 23, 16, 20, 32, 48, 32, 63, 40, 56, 36, 48, 32, 48, 32, 51, 40, 48, 44, 52, 32, 36, 56, 63, 48, 39, 36, 47, 48, 48, 56, 44, 32, 40, 60, 63, 64, 112, 80, 124, 64, 96, 64, 123, 80, 112, 72, 111, 72, 127, 80, 116, 64 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Unique sequence satisfying SumXOR_{d divides n} a(d) = A006068(n) for all n > 0, where SumXOR is the analog of summation under the binary XOR operation. See A295901 for a list of some of the properties of the Xor-Moebius transform.
LINKS
PROG
(PARI)
A006068(n)= { my(s=1, ns); while(1, ns = n >> s; if(0==ns, break()); n = bitxor(n, ns); s <<= 1; ); return (n); } \\ Essentially Joerg Arndt's Jul 19 2012 code.
A297110(n) = { my(v=0); fordiv(n, d, if(issquarefree(n/d), v=bitxor(v, A006068(d)))); (v); };
CROSSREFS
Sequence in context: A072717 A139072 A021430 * A267695 A138676 A297111
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Dec 25 2017
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 April 24 19:51 EDT 2024. Contains 371963 sequences. (Running on oeis4.)