cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A154126 Self-inverse signature permutation of a Catalan bijection: row 183 of A089840.

This page as a plain text file.
%I A154126 #13 Jan 07 2024 08:16:01
%S A154126 0,1,3,2,7,8,6,4,5,17,18,20,21,22,14,15,16,9,10,19,11,12,13,45,46,48,
%T A154126 49,50,54,55,57,58,59,61,62,63,64,37,38,39,40,41,42,43,44,23,24,47,25,
%U A154126 26,27,51,52,53,28,29,56,30,31,32,60,33,34,35,36,129,130,132,133,134
%N A154126 Self-inverse signature permutation of a Catalan bijection: row 183 of A089840.
%C A154126 This bijection of binary trees swaps the left and right subtree of a binary tree, but ONLY if either of them is empty. If both the left and right hand side tree is nonempty, fixes the tree.
%C A154126 .A...B.C...D.......A...B.C...D.....
%C A154126 ..\./...\./.........\./...\./........................
%C A154126 ...x.....x...--->....x.....x.......A...B.......B...A.
%C A154126 ....\.../.............\.../.........\./..--->...\./..
%C A154126 ......x.................x............x...........x...
%C A154126 ..............................(where either A or B is (), a leaf)
%C A154126 This automorphism demonstrates that not every clause in clause-representations of A089840 is equal to some (minimally represented) element of Thompson's group V.
%H A154126 A. Karttunen, <a href="/A154126/b154126.txt">Table of n, a(n) for n = 0..2055</a>
%H A154126 J. W. Cannon, W. J. Floyd, and W. R. Parry, <a href="https://doi.org/10.5169/seals-87877">Introductory notes on Richard Thompson's groups</a>, L'Enseignement Mathématique, Vol. 42 (1996), pp. 215-256.
%H A154126 <a href="/index/Per#IntegerPermutationCatAuto">Index entries for signature-permutations of Catalan automorphisms</a>
%o A154126 (Destructive version of this automorphism in Scheme:) (define (*A154126! s) (if (and (pair? s) (or (not (pair? (car s))) (not (pair? (cdr s))))) (*A069770! s)) s)
%Y A154126 Inverse: A154126. a(n) = A069770(A154125(n)) = A154125(A069770(n)).
%K A154126 nonn
%O A154126 0,3
%A A154126 _Antti Karttunen_, Jan 06 2009