|
Search: id:A072634
|
|
|
| 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. |
|
+0 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; listen)
|
|
|
OFFSET
|
0,3
|
|
|
LINKS
|
A. Karttunen, Gatomorphisms
Index entries for sequences that are permutations of the natural numbers
|
|
PROGRAM
|
(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: A065014 A072656 A163841 this_sequence A086194 A159610 A074246
Adjacent sequences: A072631 A072632 A072633 this_sequence A072635 A072636 A072637
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Antti Karttunen Jun 02 2002
|
|
|
Search completed in 0.002 seconds
|