%I #11 May 11 2020 02:27:25
%S 0,1,2,3,4,6,6,7,8,12,9,13,12,14,14,15,16,24,20,28,17,25,19,27,24,28,
%T 25,29,28,30,30,31,32,48,40,56,34,50,41,57,33,49,38,54,37,53,39,55,48,
%U 56,52,60,49,57,51,59,56,60,57,61,60,62,62,63,64,96,80
%N For any number with binary expansion (b_1, ..., b_w), replace the i-th "1" by b_i for i = 1..A000120(n) and the j-th "0" by b_{w+1-j} for j = 1..A023416(n); the resulting binary expansion is that of a(n).
%C Fixed points correspond to A023758.
%H Rémy Sigrist, <a href="/A334666/b334666.txt">Table of n, a(n) for n = 0..8191</a>
%H <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>
%F A000120(a(n)) = A000120(n).
%F A023416(a(n)) = A023416(n).
%e For n = 41:
%e - the binary representation of 41 is "101001",
%e - the 3 1's are replaced by 1, 0, 1, respectively,
%e - the 3 0's are replaced by 1, 0, 0, respectively,
%e - hence we obtain "110001",
%e - and a(41) = 49.
%o (PARI) a(n) = { my (b=binary(n), t=vector(#b), l=0, r=#b+1); for (k=1, #b, t[k] = if (b[k], b[l++], b[r--])); fromdigits(t, 2) }
%Y See A334667 for a similar sequence.
%Y Cf. A000120, A023416, A023758.
%K nonn,base
%O 0,3
%A _Rémy Sigrist_, May 07 2020