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.

A318799 Number of rooted trees with n nodes such that no more than five subtrees of the same size extend from the same node.

This page as a plain text file.
%I A318799 #4 Sep 03 2018 21:35:45
%S A318799 0,1,1,2,4,9,20,47,113,281,706,1807,4671,12223,32245,85777,229670,
%T A318799 618732,1675523,4558995,12456746,34166520,94034681,259621349,
%U A318799 718846409,1995609079,5553497132,15489246752,43290735944,121226413303,340079037154,955633681302
%N A318799 Number of rooted trees with n nodes such that no more than five subtrees of the same size extend from the same node.
%H A318799 Alois P. Heinz, <a href="/A318799/b318799.txt">Table of n, a(n) for n = 0..2138</a>
%p A318799 g:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, add(
%p A318799       binomial(g((i-1)$2)+j-1, j)*g(n-i*j, i-1), j=0..min(5, n/i))))
%p A318799     end:
%p A318799 a:= n-> g((n-1)$2):
%p A318799 seq(a(n), n=0..40);
%Y A318799 Column k=5 of A318753.
%K A318799 nonn
%O A318799 0,4
%A A318799 _Alois P. Heinz_, Sep 03 2018