A245898 Number of permutations avoiding 231 that can be realized on increasing unary-binary trees with n nodes.
1, 1, 2, 4, 10, 26, 74, 217
Offset: 1
Examples
For example, when n=4, the permutations 1234, 1243, 1324, and 1423 all avoid 231 in the classical sense and occur as breadth-first search reading words on an increasing unary-binary tree with 4 nodes: 1 1 1 1 / \ / \ / \ / \ 2 3 2 4 3 2 4 2 | | | | 4 3 4 3
Comments