OFFSET
0,4
REFERENCES
F. Bergeron, G. Labelle and P. Leroux, Combinatorial Species and Tree-Like Structures, Camb. 1998, p. 239, Eq 79, A_5.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..64
R. C. Richards, Shape distribution of height-balanced trees, Info. Proc. Lett., 17 (1983), 17-20.
Wikipedia, AVL tree
FORMULA
a(n) = Sum_{h=0..6} A143897(h,n).
MAPLE
a:= proc(n) local B, z; B:= proc(x, y, d) if d>=1 then x+B(x^2+2*x*y, x, d-1) else x fi end; coeff(B(z, 0, 6), z, n) end: seq(a(n), n=0..64);
MATHEMATICA
a[n_] := Module[{B, z}, B[x_, y_, d_] := B[x, y, d] = If[d >= 1, x+B[x^2+2*x*y, x, d-1], x]; Coefficient[B[z, 0, 6], z, n]]; Table[a[n], {n, 0, 64}] (* Jean-François Alcover, Mar 05 2014, after Alois P. Heinz *)
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Alois P. Heinz, Aug 27 2008
STATUS
approved