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.

A292235 Number of (unlabeled) rooted trees with n leaf nodes and without unary nodes such that the maximum of the node outdegrees equals nine.

Original entry on oeis.org

1, 2, 7, 23, 78, 262, 893, 3040, 10410, 35718, 122918, 423861, 1464642, 5069475, 17574187, 61007028, 212044176, 737835578, 2570028204, 8960286527, 31266462620, 109188954531, 381589000393, 1334464142298, 4669723965497, 16350466246944, 57280522330579
Offset: 9

Views

Author

Alois P. Heinz, Sep 12 2017

Keywords

Crossrefs

Column k=9 of A292086.

Programs

  • Maple
    b:= proc(n, i, v, k) option remember; `if`(n=0,
          `if`(v=0, 1, 0), `if`(i<1 or v<1 or n A(n, 9)-A(n, 8):
    seq(a(n), n=9..40);