login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A065410 Number of labeled, rooted, binary trees with internal nodes labeled from {1, ...,n} and leaves labeled from {0,1} such that for any path from the root to a leaf, the internal nodes receive distinct labels. In other words, the number of decision trees on n Boolean variables. 0
2, 6, 74, 16430, 1079779602, 5829619944476392022, 203906812182221592008725937367751490906, 291045916380210542889328709144540300448800843154329245652913718353100604905854 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
A rooted tree is binary if each internal node has two children, a left child and a right child.
LINKS
Jan A. Bergstra, Alban Ponse, Daan J. C. Staudt, Propositional logic with short-circuit evaluation: a non-commutative and a commutative variant, arXiv:1810.02142 [cs.LO], 2018.
H. Buhrman and R. de Wolf, Complexity Measures and Decision Tree Complexity: A Survey, Theoretical Computer Science, Vol. 288, no. 1 (2002), 21-43.
FORMULA
a(n) = n*(a(n-1))^2 + 2.
MATHEMATICA
a[0] = 2; a[n_] := n*a[n - 1]^2 + 2; Table[ a[n], {n, 0, 8} ]
RecurrenceTable[{a[0]==2, a[n]==n*a[n-1]^2+2}, a, {n, 7}] (* Harvey P. Dale, Dec 18 2015 *)
CROSSREFS
Sequence in context: A218058 A207136 A304641 * A000721 A262279 A327052
KEYWORD
easy,nice,nonn
AUTHOR
Clifford Smyth (csmyth(AT)ias.edu), Nov 14 2001
EXTENSIONS
One more term from Robert G. Wilson v, Nov 15 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 05:49 EDT 2024. Contains 371918 sequences. (Running on oeis4.)