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!)
A273666 Permutation of nonnegative integers: a(0) = 0; after which, a(2n) = A153880(a(n)), a(2n+1) = A273670(a(n)). 6

%I #11 May 30 2016 18:25:05

%S 0,1,2,3,6,4,8,5,24,10,12,7,30,13,14,9,120,34,36,16,48,18,26,11,144,

%T 42,50,19,54,20,32,15,720,154,156,46,168,49,60,22,240,66,72,25,126,37,

%U 38,17,840,186,192,58,246,68,74,27,264,73,78,28,150,44,56,21,5040,874,876,199,888,202,204,64,960,216,242,67,288,82,84,31

%N Permutation of nonnegative integers: a(0) = 0; after which, a(2n) = A153880(a(n)), a(2n+1) = A273670(a(n)).

%C This sequence can be represented as a binary tree. Each left hand child is produced as A153880(n), and each right hand child as A273670(n), when their parent contains n >= 1:

%C 0

%C |

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

%C 2 3

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

%C / \ / \ / \ / \

%C / \ / \ / \ / \

%C / \ / \ / \ / \

%C 24 10 12 7 30 13 14 9

%C 120 34 36 16 48 18 26 11 144 42 50 19 54 20 32 15

%C etc.

%H Antti Karttunen, <a href="/A273666/b273666.txt">Table of n, a(n) for n = 0..1023</a>

%H <a href="/index/Fa#facbase">Index entries for sequences related to factorial base representation</a>

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

%F a(0) = 0; after which, a(2n) = A153880(a(n)), a(2n+1) = A273670(a(n)).

%o (Scheme, with memoization-macro definec)

%o (definec (A273666 n) (cond ((zero? n) n) ((even? n) (A153880 (A273666 (/ n 2)))) (else (A273670 (A273666 (/ (- n 1) 2))))))

%Y Inverse: A273665.

%Y Cf. A153880, A273670.

%Y Related or similar permutations: A255566, A273668.

%K nonn,base,tabf

%O 0,3

%A _Antti Karttunen_, May 30 2016

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 September 17 21:55 EDT 2024. Contains 375990 sequences. (Running on oeis4.)