OFFSET
0,1
COMMENTS
This one-to-one correspondence between all rooted plane trees and one node larger, root degree = 1 trees illustrates the fact that INVERT(A000108) = LEFT(A000108). (Catalan numbers shift left under Cameron's A transformation.)
From Ruud H.G. van Tol, May 13 2024: (Start)
Sequence on a lattice:
Tree Paths Decimal Count
|_ 10 2 1
|_._ 1100 12 1
|_|_._ 110100 -111000 52,56 2
|_|_|_._ 11010100 -11110000 212-240 5
|_|_|_|_._ 1101010100-1111100000 852-992 14
... (End)
LINKS
Ruud H.G. van Tol, Table of n, a(n) for n = 0..2055
P. J. Cameron, Some sequences of integers, Discrete Math., 75 (1989), 89-102.
P. J. Cameron, Some sequences of integers, in "Graph Theory and Combinatorics 1988", ed. B. Bollobas, Annals of Discrete Math., 43 (1989), 89-102.
FORMULA
MAPLE
alltrees2singletrunked := n -> pars2binexp([binexp2pars(n)]); # Just surround with extra parentheses.
PROG
(PARI) a_rows(N) = my(a=Vec([[2]], N)); for(r=1, N-1, my(b=a[r], c=List()); foreach(b, t, for(i=1, valuation(t, 2), listput(~c, (t<<2)+(2<<i)))); a[r+1]=Vec(c)); a; \\ Ruud H.G. van Tol, May 25 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen Sep 07 2000
STATUS
approved