login
Permutation of natural numbers: a(1) = 1, a(2n) = A233271(1+a(n)), a(2n+1) = A269390(a(n)).
5

%I #10 Mar 07 2016 12:30:16

%S 1,2,3,4,5,7,6,8,9,12,10,16,13,15,11,21,14,24,17,32,20,28,18,49,26,38,

%T 22,46,25,31,19,64,34,42,23,79,37,53,27,110,48,63,33,94,43,56,29,186,

%U 72,87,40,128,57,71,35,174,68,82,39,106,47,60,30,245,92,117,51,152,62,75,36,322,112,127,55,203,77,90,41

%N Permutation of natural numbers: a(1) = 1, a(2n) = A233271(1+a(n)), a(2n+1) = A269390(a(n)).

%C This sequence can be represented as a binary tree. Each left hand child is produced as A233271(1+n), and each right hand child as A269390(n), when the parent contains n:

%C |

%C ...................1...................

%C 2 3

%C 4......../ \........5 7......../ \........6

%C / \ / \ / \ / \

%C / \ / \ / \ / \

%C / \ / \ / \ / \

%C 8 9 12 10 16 13 15 11

%C 21 14 24 17 32 20 28 18 49 26 38 22 46 25 31 19

%C etc.

%H Antti Karttunen, <a href="/A269392/b269392.txt">Table of n, a(n) for n = 1..3071</a>

%H <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>

%F a(1) = 1, a(2n) = A233271(1+a(n)), a(2n+1) = A269390(a(n)).

%F As a composition of other permutations:

%F a(n) = A269398(A269402(n)).

%o (Scheme, with memoization-macro definec)

%o (definec (A269392 n) (cond ((<= n 1) n) ((even? n) (A233271 (+ 1 (A269392 (/ n 2))))) (else (A269390 (A269392 (/ (- n 1) 2))))))

%Y Inverse: A269391.

%Y Cf. A233271, A269390.

%Y Cf. also A260432.

%Y Similar or related permutations: A269398, A269402.

%K nonn,base,tabf

%O 1,2

%A _Antti Karttunen_, Mar 05 2016