proposed
approved
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”).
proposed
approved
editing
proposed
g[n_] := If[n == 0, 0, Floor@Log[2, n]+1];
b[n_, h_] := b[n, h] = If[n == 0, 1, If[n < 2^h,
Sum[b[j - 1, h - 1]*b[n - j, h - 1], {j, 1, n}], 0]];
T[n_, k_] := b[n, k] - If[k > 0, b[n, k - 1], 0];
Table[Table[T[n, k], {k, g[n], n}], {n, 0, 12}] // Flatten (* Jean-François Alcover, Feb 08 2021, after Alois P. Heinz *)
approved
editing
editing
approved
Wikipedia, <a href="https://en.wikipedia.org/wiki/Binary_search_tree">Binary search tree</a>
<a href="/index/Ro#rooted">Index entries for sequences related to rooted trees</a>
<a href="/index/Tra#trees">Index entries for sequences related to trees</a>
approved
editing
editing
approved
T(n,k) is defined for n,k >= 0. The triangle contains only the positive terms. Terms not shown are zero.
approved
editing
editing
approved
T(n+3,n+2) gives A014480.
Sum_{n=k..2^k-1} n * T(n,k) = A335922(nk).