|
| |
|
|
A072634
|
|
Permutation of natural numbers induced by reranking plane binary trees given in the standard lexicographic order (A014486) with an "arithmetic global ranking algorithm", using packA054238 as the packing bijection N X N -> N.
|
|
8
| |
|
|
0, 1, 3, 2, 11, 9, 4, 6, 5, 139, 131, 33, 41, 35, 12, 10, 8, 70, 66, 7, 17, 21, 18, 32907, 32779, 2051, 2179, 2059, 161, 137, 129, 8233, 8201, 43, 515, 547, 521, 140, 132, 34, 42, 36, 16, 14, 72, 16454, 16390, 68, 1026, 1090, 1030, 15, 13, 19, 81, 69, 23, 65
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
LINKS
| A. Karttunen, Gatomorphisms
Index entries for sequences that are permutations of the natural numbers
|
|
|
PROG
| (Scheme functions below show the essential idea. For a complete source, follow the "Gatomorphisms" link.)
(define A072634 (lexrank->arithrank-bijection packA054238))
(define (lexrank->arithrank-bijection packfun) (lambda (n) (rank-bintree (binexp->parenthesization (A014486 n)) packfun)))
(define (rank-bintree bt packfun) (cond ((not (pair? bt)) 0) (else (1+ (packfun (rank-bintree (car bt) packfun) (rank-bintree (cdr bt) packfun))))))
(define (packA054238 x y) (+ (A000695 x) (* 2 (A000695 y))))
|
|
|
CROSSREFS
| Inverse permutation: A072635. Cf. also A014486, A000695, A054238, A071651, A072636, A072646, A072656, A072658, A072644.
Sequence in context: A191669 A163841 A180185 * A086194 A159610 A074246
Adjacent sequences: A072631 A072632 A072633 * A072635 A072636 A072637
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Antti Karttunen Jun 02 2002
|
| |
|
|