# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/
Search: id:a093573
Showing 1-1 of 1
%I A093573 #40 Jan 28 2020 12:07:52
%S A093573 0,1,3,2,4,6,5,7,13,15,8,12,14,16,26,9,11,17,19,25,27,10,18,20,22,24,
%T A093573 28,30,21,23,29,31,53,55,61,63,32,50,52,54,56,60,62,64,106,33,35,49,
%U A093573 51,57,59,65,67,105,107,34,36,38,48,58,66,68,70,104,108,110,37,39,45,47,69,71,77,79,101,103,109,111
%N A093573 Triangle read by rows: row n gives positions where n occurs in the Golay-Rudin-Shapiro related sequence A020986.
%C A093573 Each positive integer n occurs n times, so the n-th row has length n.
%H A093573 Reinhard Zumkeller, Rows n = 1..150 of triangle, flattened
%H A093573 John Brillhart, Patrick Morton, Über Summen von Rudin-Shapiroschen Koeffizienten, (German) Illinois J. Math. 22 (1978), no. 1, 126--148. MR0476686 (57 #16245). - _N. J. A. Sloane_, Jun 06 2012
%H A093573 Eric Weisstein's World of Mathematics, Rudin-Shapiro Sequence
%e A093573 A020986(n) for n = 0, 1, ... is 1, 2, 3, 2, 3, 4, 3, 4, 5, 6, ..., so the positions of 1, 2, 3, 4, ... are 0; 1, 3; 2, 4, 6; 5, 7, 13, 15; ...
%e A093573 From _Seiichi Manyama_, Apr 23 2017: (Start)
%e A093573 Triangle begins:
%e A093573 0,
%e A093573 1, 3,
%e A093573 2, 4, 6,
%e A093573 5, 7, 13, 15,
%e A093573 8, 12, 14, 16, 26,
%e A093573 9, 11, 17, 19, 25, 27,
%e A093573 10, 18, 20, 22, 24, 28, 30,
%e A093573 21, 23, 29, 31, 53, 55, 61, 63,
%e A093573 32, 50, 52, 54, 56, 60, 62, 64, 106,
%e A093573 33, 35, 49, 51, 57, 59, 65, 67, 105, 107,
%e A093573 34, 36, 38, 48, 58, 66, 68, 70, 104, 108, 110,
%e A093573 ... (End)
%t A093573 With[{n = 16}, TakeWhile[#, Length@ #2 == #1 & @@ # &][[All, -1]] &@ Transpose@ {Keys@ #, Lookup[#, Keys@ #]} &[PositionIndex@ Accumulate@ Array[1 - 2 Mod[Length[FixedPointList[BitAnd[#, # - 1] &, BitAnd[#, Quotient[#, 2]]]], 2] &, n^2, 0] - 1]] // Flatten (* _Michael De Vlieger_, Jan 25 2020 *)
%o A093573 (Haskell)
%o A093573 a093573 n k = a093573_row n !! (k-1)
%o A093573 a093573_row n = take n $ elemIndices n a020986_list
%o A093573 a093573_tabl = map a093573_row [1..]
%o A093573 -- _Reinhard Zumkeller_, Jun 06 2012
%Y A093573 Column k=1 gives A212591. Diagonal k=n gives A020991.
%Y A093573 Cf. A020985, A020986.
%K A093573 nonn,tabl
%O A093573 1,3
%A A093573 _Eric W. Weisstein_, Apr 01 2004
%E A093573 Offset corrected by _Reinhard Zumkeller_, Jun 06 2012
# Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE