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.
%I A089851 #15 Mar 31 2012 14:02:27 %S A089851 0,1,2,3,5,6,4,7,8,12,13,15,16,19,11,14,9,17,18,10,20,21,22,31,32,34, %T A089851 35,36,40,41,43,44,47,52,53,56,60,30,33,39,42,51,28,37,23,45,46,24,48, %U A089851 49,50,29,38,25,54,55,26,57,58,59,27,61,62,63,64,87,88,90,91,92,96,97,99 %N A089851 Permutation of natural numbers induced by Catalan automorphism *A089851 acting on the binary trees/parenthesizations encoded by A014486/A063171. %C A089851 This automorphism effects the following transformation on the unlabeled rooted plane binary trees (letters A, B, C refer to arbitrary subtrees located on those nodes and () stands for an implied terminal node.) %C A089851 ...B...C...........C...A %C A089851 ....\./.............\./ %C A089851 .A...x....-->....B...x.................A..().........A...().. %C A089851 ..\./.............\./...................\./....-->....\./... %C A089851 ...x...............x.....................x.............x.... %C A089851 (a . (b . c)) -> (b . (c . a)) ______ (a . ()) ---> (a . ()) %C A089851 In terms of S-expressions, this rotates car, cadr and cddr of an S-exp %C A089851 if its length > 1, otherwise keeps it intact. %C A089851 Note that the first clause corresponds to generator C of Thompson's groups T and V. %C A089851 (Cf. also A072796, A074679 and A154121 for other related generators). %C A089851 See "Catalan Automorphisms" OEIS-Wiki page for a detailed explanation how to obtain a given integer sequence from this definition. %H A089851 A. Karttunen, <a href="http://oeis.org/wiki/Catalan_Automorphisms">Catalan Automorphisms</a> %H A089851 A. Karttunen, <a href="/A089408/a089408.c.txt">C-program for computing this sequence</a> %H A089851 <a href="/index/Per#IntegerPermutationCatAuto">Index entries for signature-permutations induced by Catalan automorphisms</a> %o A089851 (Scheme functions implementing this automorphism on list-structures, both constructive (*A089851) and destructive (*A089851!) versions:) %o A089851 (define (*A089851 s) (if (and (pair? s) (pair? (cdr s))) (cons (cadr s) (cons (cddr s) (car s))) s)) %o A089851 (define (*A089851! s) (cond ((not (pair? s)) s) ((not (pair? (cdr s))) s) (else (swap! s) (robr! s) s))) %o A089851 (define (swap! s) (let ((ex-car (car s))) (set-car! s (cdr s)) (set-cdr! s ex-car) s)) %o A089851 (define (robr! s) (let ((ex-cdr (cdr s))) (set-cdr! s (caar s)) (set-car! (car s) ex-cdr) (swap! (car s)) (swap! s) s)) %Y A089851 Inverse of A089853. a(n) = A089850(A072796(n)) = A057163(A089857(A057163(n))). Row 4 of A089840. %Y A089851 Number of cycles: A089847. Number of fixed-points: A089848 (in each range limited by A014137 and A014138). %K A089851 nonn %O A089851 0,3 %A A089851 _Antti Karttunen_, Nov 29 2003 %E A089851 The new mail-address, further comments and constructive implementation of Scheme-function (*A089851) added by _Antti Karttunen_, Jun 04 2011