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!)
A175913 Convert to decimal the number resulting from performing binary xnor on the corresponding digits in the left and right binary concatenations of the integers one to n. 0

%I #2 Mar 31 2012 20:01:58

%S 1,4,25,190,1159,15692,111381,1416474,24608235,291074808,5162763209,

%T 125052555486,2198977618351,28389504497340,487294161504141,

%U 11589641752262546,395151697837143155,13197172619557324880

%N Convert to decimal the number resulting from performing binary xnor on the corresponding digits in the left and right binary concatenations of the integers one to n.

%t frombinrep[x_] := FromDigits[Flatten[Table[Table[If[OddQ[ n], 1, 0], {d, 1, x[[n]]}], {n, 1, Length[x]}]], 2]

%t repcount[x_] := Length/@Split[x]

%t l = {}; r = {}; Table[d = IntegerDigits[x, 2]; l = Flatten[{l, d}]; r = Flatten[{d, r}]; frombinrep[ repcount[EvenQ[l + r]]], {x, 1, DESIRED NUMBER OF TERMS HERE}]

%Y Cf. A047778, A098780

%K base,easy,nonn

%O 1,2

%A _Dylan Hamilton_, Oct 14 2010

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 29 23:12 EDT 2024. Contains 373856 sequences. (Running on oeis4.)