login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A082352
Permutation of natural numbers induced by the Catalan bijection gma082352 acting on the parenthesizations encoded by A014486/A063171.
9
0, 1, 2, 3, 4, 5, 7, 8, 6, 9, 10, 11, 12, 13, 17, 18, 20, 21, 22, 14, 15, 16, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 45, 46, 48, 49, 50, 54, 55, 57, 58, 59, 61, 62, 63, 64, 37, 38, 39, 40, 41, 42, 43, 44, 47, 51, 52, 53, 56, 60, 65, 66, 67, 68, 69
OFFSET
0,3
PROG
(Scheme functions implementing this automorphism on list-structures:)
(define (gma082352! s) (cond ((not (pair? s)) s) ((not (pair? (car s))) s) ((not (pair? (caar s))) (swap! (robr! s))) (else (robr! s))))
(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))
(define (swap! s) (let ((ex-car (car s))) (set-car! s (cdr s)) (set-cdr! s ex-car) s))
CROSSREFS
Sequence in context: A265550 A371470 A306012 * A122320 A123713 A089855
KEYWORD
nonn
AUTHOR
Antti Karttunen, Apr 17 2003
STATUS
approved