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.

A292211 Number of (unlabeled) rooted trees with n leaf nodes and without unary nodes or outdegrees larger than five.

This page as a plain text file.
%I A292211 #5 Sep 11 2017 17:53:28
%S A292211 0,1,1,2,5,12,32,87,251,733,2201,6696,20705,64681,204183,649738,
%T A292211 2082939,6719063,21796084,71052001,232645645,764768959,2523033061,
%U A292211 8350789334,27721841968,92277902858,307935654094,1029970333229,3452371784462,11595031966743
%N A292211 Number of (unlabeled) rooted trees with n leaf nodes and without unary nodes or outdegrees larger than five.
%H A292211 Alois P. Heinz, <a href="/A292211/b292211.txt">Table of n, a(n) for n = 0..1000</a>
%H A292211 <a href="/index/Ro#rooted">Index entries for sequences related to rooted trees</a>
%p A292211 b:= proc(n, i, v) option remember; `if`(n=0,
%p A292211       `if`(v=0, 1, 0), `if`(i<1 or v<1 or n<v, 0,
%p A292211       `if`(v=n, 1, add(binomial(a(i)+j-1, j)*
%p A292211        b(n-i*j, i-1, v-j), j=0..min(n/i, v)))))
%p A292211     end:
%p A292211 a:= proc(n) option remember; `if`(n<2, n,
%p A292211       add(b(n, n+1-j, j), j=2..min(n, 5)))
%p A292211     end:
%p A292211 seq(a(n), n=0..35);
%Y A292211 Column k=5 of A292085.
%K A292211 nonn
%O A292211 0,4
%A A292211 _Alois P. Heinz_, Sep 11 2017