cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A259114 Number of rooted binary unordered tanglegrams of size n.

Original entry on oeis.org

1, 1, 2, 10, 69, 807, 13048, 269221, 6660455, 191411477, 6257905519, 229312906604, 9309547057292, 414803750101863
Offset: 1

Views

Author

Frederick A. Matsen IV, Jun 18 2015

Keywords

Comments

Binary tanglegrams are pairs of bifurcating (degree 3 internal node) trees with a bijection between the leaves of the trees. Two tanglegrams are isomorphic if there is an isomorphism between the trees that preserves the bijection. Rooted means that the tanglegram is composed of rooted trees, and unordered means that two tanglegrams that differ by exchanging the trees and inverting the bijection are considered identical.

Crossrefs

Cf. A258620 (tanglegrams), A259115, A259116, A258486 (tangled chains), A258487, A258488, A258489.

Extensions

More terms from Ira M. Gessel, Jul 19 2015

A259115 Number of unrooted binary ordered tanglegrams of size n.

Original entry on oeis.org

1, 1, 1, 2, 4, 31, 243, 3532, 62810, 1390718, 36080361, 1076477512, 36281518847, 1363869480379, 56587508558171, 2569141702825037, 126714642738385906, 6747643861563535720, 385875940575529343271, 23588199955061659841248, 1535037278334227258123709, 105961521687913311720698169
Offset: 1

Views

Author

Frederick A. Matsen IV, Jun 18 2015

Keywords

Comments

Binary tanglegrams are pairs of bifurcating (degree 3 internal node) trees with a bijection between the leaves of the trees. Two tanglegrams are isomorphic if there is an isomorphism between the trees that preserves the bijection. Unrooted means that the tanglegram is composed of unrooted trees, and ordered means that the trees are considered as an ordered pair.

Crossrefs

Cf. A258620 (tanglegrams), A259114, A259116, A258486 (tangled chains), A258487, A258488, A258489.

Programs

  • PARI
    \\ See links in A339645 for combinatorial species functions.
    rootedBinTrees(n)={my(v=vector(n)); v[1]=sv(1); for(n=2, n, v[n]=(sum(j=1, n-1, v[j]*v[n-j]) + if(n%2, 0, sRaiseCI(v[n/2], n/2, 2)))/2); x*Ser(v)}
    cycleIndexSeries(n)={my(g=rootedBinTrees(n), u = g + (sRaise(g,3) - g^3)/3); sCartProd(u,u)}
    NumUnlabeledObjsSeq(cycleIndexSeries(12)) \\ Andrew Howroyd, Dec 24 2020

Extensions

More terms from Ira M. Gessel, Jul 19 2015
Terms a(15) and beyond from Andrew Howroyd, Dec 24 2020
Showing 1-2 of 2 results.