login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A126310 A014486-index for the Dyck path "derived" from the n-th Dyck path encoded by A014486(n). 3
0, 0, 1, 0, 2, 1, 1, 1, 0, 4, 2, 2, 2, 1, 2, 1, 2, 3, 1, 1, 1, 1, 0, 9, 4, 4, 4, 2, 4, 2, 4, 5, 2, 2, 2, 2, 1, 4, 2, 2, 2, 1, 4, 2, 6, 7, 3, 2, 2, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 1, 1, 1, 1, 0, 23, 9, 9, 9, 4, 9, 4, 9, 10, 4, 4, 4, 4, 2, 9, 4, 4, 4, 2, 9, 4, 11, 12, 5, 4, 4, 5, 2, 4, 2, 4, 5, 2, 4, 5, 5 (list; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

According to Vaille, the concept of "derivation des ponts" is defined by Kreweras, in "Sur les eventails de segments" paper.

REFERENCES

G. Kreweras, Sur les eventails de segments, Cahiers du Bureau Universitaire de Recherche Operationelle, Cahier no. 15, Paris, 1970, pp. 3-41.

J. Vaill\'{e}, Une Bijection Explicative de Plusieurs Proprietes Remarquables des Ponts, European J. Combin. 18 (1997), no. 1, 117-124.

PROG

(MIT Scheme, function rising-list->binexp given in A125985): (define (A126310 n) (A080300 (rising-list->binexp (reverse! (map -1+ (map length (A126310-aux1 (A036044 (A014486 n)))))))))

(define (A126310-aux1 n) (let loop ((n n) (vs (list)) (u 0) (d 0)) (cond ((zero? n) (if (null? vs) vs (reverse! (cdr vs)))) ((= 2 (modulo n 4)) (loop (/ n 2) (cons (list (+ 1 u)) vs) (+ u 1) d)) ((= 1 (modulo n 4)) (add-valley-abscisses! (+ d 1) vs) (loop (/ (- n 1) 2) vs u (+ d 1))) ((odd? n) (loop (/ (- n 1) 2) vs u (+ d 1))) (else (loop (/ n 2) vs (+ u 1) d)))))

(define (add-valley-abscisses! valley-abscisse peak-ordonnees) (for-each (lambda (s) (append! s (list valley-abscisse))) (keep-matching-items peak-ordonnees (lambda (po) (>= (car po) valley-abscisse)))))

CROSSREFS

a(n) = A125986(A126309(A125985(n))).

Sequence in context: A120691 A111941 A153462 * A109086 A105794 A160380

Adjacent sequences:  A126307 A126308 A126309 * A126311 A126312 A126313

KEYWORD

nonn

AUTHOR

Antti Karttunen (His-Firstname.His-Surname(AT)gmail.com), Jan 02 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 12:41 EST 2012. Contains 205909 sequences.