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.

A244709 Number of n-node unlabeled rooted trees with thinning limbs and root outdegree (branching factor) 8.

Original entry on oeis.org

1, 1, 3, 6, 15, 31, 74, 159, 365, 803, 1813, 4022, 9038, 20128, 45093, 100656, 225263, 503320, 1126045, 2517487, 5631913, 12596046, 28181168, 63045684, 141071758, 315668674, 706452161, 1581088178, 3538954508, 7921759060, 17733983146, 39702719910, 88893039358
Offset: 9

Views

Author

Alois P. Heinz, Jul 04 2014

Keywords

Comments

In a rooted tree with thinning limbs the outdegree of a parent node is larger than or equal to the outdegree of any of its child nodes.

Crossrefs

Column k=8 of A244657.

Programs

  • Maple
    b:= proc(n, i, h, v) option remember; `if`(n=0,
          `if`(v=0, 1, 0), `if`(i<1 or v<1 or n b(n-1$2, 8$2):
    seq(a(n), n=9..50);