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.
%I A292235 #6 Sep 12 2017 11:55:51 %S A292235 1,2,7,23,78,262,893,3040,10410,35718,122918,423861,1464642,5069475, %T A292235 17574187,61007028,212044176,737835578,2570028204,8960286527, %U A292235 31266462620,109188954531,381589000393,1334464142298,4669723965497,16350466246944,57280522330579 %N A292235 Number of (unlabeled) rooted trees with n leaf nodes and without unary nodes such that the maximum of the node outdegrees equals nine. %H A292235 Alois P. Heinz, <a href="/A292235/b292235.txt">Table of n, a(n) for n = 9..1000</a> %H A292235 <a href="/index/Ro#rooted">Index entries for sequences related to rooted trees</a> %p A292235 b:= proc(n, i, v, k) option remember; `if`(n=0, %p A292235 `if`(v=0, 1, 0), `if`(i<1 or v<1 or n<v, 0, %p A292235 `if`(v=n, 1, add(binomial(A(i, k)+j-1, j)* %p A292235 b(n-i*j, i-1, v-j, k), j=0..min(n/i, v))))) %p A292235 end: %p A292235 A:= proc(n, k) option remember; `if`(n<2, n, %p A292235 add(b(n, n+1-j, j, k), j=2..min(n, k))) %p A292235 end: %p A292235 a:= n-> A(n, 9)-A(n, 8): %p A292235 seq(a(n), n=9..40); %Y A292235 Column k=9 of A292086. %K A292235 nonn %O A292235 9,2 %A A292235 _Alois P. Heinz_, Sep 12 2017