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.

A318864 Number of rooted trees with n nodes such that seven equals the maximal number of isomorphic subtrees extending from the same node.

Original entry on oeis.org

0, 1, 1, 3, 8, 22, 60, 167, 466, 1307, 3681, 10418, 29575, 84219, 240407, 687802, 1971576, 5661335, 16281377, 46888590, 135202932, 390300559, 1127877757, 3262398334, 9444747407, 27364824226, 79344643855, 230219356666, 668412171376, 1941808202980, 5644309042885
Offset: 7

Views

Author

Alois P. Heinz, Sep 04 2018

Keywords

Crossrefs

Column k=7 of A318758.

Programs

  • Maple
    h:= proc(n, m, t, k) option remember; `if`(m=0, binomial(n+t, t),
          `if`(n=0, 0, add(h(n-1, m-j, t+1, k), j=1..min(k, m))))
        end:
    b:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0,
          add(b(n-i*j, i-1, k)*h(A(i, k), j, 0, k), j=0..n/i)))
        end:
    A:= (n, k)-> `if`(n<2, n, b(n-1$2, k)):
    a:= n-> (k-> A(n, k)-A(n, k-1))(7):
    seq(a(n), n=7..37);