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 A292231 #6 Sep 12 2017 11:54:26 %S A292231 1,2,7,23,77,256,861,2897,9800,33232,113012,385165,1315434,4500398, %T A292231 15421463,52919299,181826880,625467087,2153816295,7423887771, %U A292231 25611710370,88430103927,305555059139,1056532822348,3655607694207,12656112780583,43841784746311 %N A292231 Number of (unlabeled) rooted trees with n leaf nodes and without unary nodes such that the maximum of the node outdegrees equals five. %H A292231 Alois P. Heinz, <a href="/A292231/b292231.txt">Table of n, a(n) for n = 5..1000</a> %H A292231 <a href="/index/Ro#rooted">Index entries for sequences related to rooted trees</a> %p A292231 b:= proc(n, i, v, k) option remember; `if`(n=0, %p A292231 `if`(v=0, 1, 0), `if`(i<1 or v<1 or n<v, 0, %p A292231 `if`(v=n, 1, add(binomial(A(i, k)+j-1, j)* %p A292231 b(n-i*j, i-1, v-j, k), j=0..min(n/i, v))))) %p A292231 end: %p A292231 A:= proc(n, k) option remember; `if`(n<2, n, %p A292231 add(b(n, n+1-j, j, k), j=2..min(n, k))) %p A292231 end: %p A292231 a:= n-> A(n, 5)-A(n, 4): %p A292231 seq(a(n), n=5..35); %Y A292231 Column k=5 of A292086. %K A292231 nonn %O A292231 5,2 %A A292231 _Alois P. Heinz_, Sep 12 2017