A363272 Irregular triangle read by rows: T(n,k) = number of unlabeled binary rooted trees with n leaves, where some child tree has k leaves, 1 <= k <= n/2.
1, 1, 1, 1, 2, 1, 3, 2, 1, 6, 3, 2, 11, 6, 3, 3, 23, 11, 6, 6, 46, 23, 11, 12, 6, 98, 46, 23, 22, 18, 207, 98, 46, 46, 33, 21, 451, 207, 98, 92, 69, 66, 983, 451, 207, 196, 138, 138, 66, 2179, 983, 451, 414, 294, 276, 253, 4850, 2179, 983, 902, 621, 588, 506, 276
Offset: 2
Examples
Table begins: 1; 1; 1, 1; 2, 1; 3, 2, 1; 6, 3, 2; 11, 6, 3, 3; 23, 11, 6, 6; 46, 23, 11, 12, 6; 98, 46, 23, 22, 18; ...
Links
- Andrew Howroyd, Table of n, a(n) for n = 2..2501 (rows 2..100)
Programs
-
PARI
T(n)={my(A=vector(n), R=vector(n)); A[1]=1; R[1]=[]; for(i=2, n, R[i] = vector(i\2, j, if(2*jAndrew Howroyd, Jan 01 2024
Formula
Extensions
Terms a(32) and beyond from Andrew Howroyd, Jan 01 2024