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.

A298426 Regular triangle where T(n,k) is number of k-ary rooted trees with n nodes.

This page as a plain text file.
%I A298426 #9 Jan 20 2018 13:16:58
%S A298426 1,0,1,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,0,0,1,0,1,2,1,0,0,1,0,1,0,0,0,0,
%T A298426 0,1,0,1,3,0,1,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,1,6,0,0,1,0,0,0,0,1,0,1,
%U A298426 0,0,0,0,0,0,0,0,0,1,0,1,11,4,2,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,23,0,0,0,0,1,0,0,0,0,0,0,1
%N A298426 Regular triangle where T(n,k) is number of k-ary rooted trees with n nodes.
%C A298426 Row sums are A298422.
%H A298426 Alois P. Heinz, <a href="/A298426/b298426.txt">Rows n = 1..200, flattened</a>
%e A298426 Triangle begins:
%e A298426 1
%e A298426 0  1
%e A298426 0  1  1
%e A298426 0  1  0  1
%e A298426 0  1  1  0  1
%e A298426 0  1  0  0  0  1
%e A298426 0  1  2  1  0  0  1
%e A298426 0  1  0  0  0  0  0  1
%e A298426 0  1  3  0  1  0  0  0  1
%e A298426 0  1  0  2  0  0  0  0  0  1
%e A298426 0  1  6  0  0  1  0  0  0  0  1
%e A298426 0  1  0  0  0  0  0  0  0  0  0  1
%e A298426 0  1  11 4  2  0  1  0  0  0  0  0  1
%e A298426 0  1  0  0  0  0  0  0  0  0  0  0  0  1
%e A298426 0  1  23 0  0  0  0  1  0  0  0  0  0  0  1
%e A298426 0  1  0  8  0  2  0  0  0  0  0  0  0  0  0  1
%t A298426 nn=16;
%t A298426 arut[n_,k_]:=If[n===1,{{}},Join@@Function[c,Union[Sort/@Tuples[arut[#,k]&/@c]]]/@Select[IntegerPartitions[n-1],Length[#]===k&]]
%t A298426 Table[arut[n,k]//Length,{n,nn},{k,0,n-1}]
%Y A298426 Cf. A000005, A000081, A000598, A001190, A001678, A003238, A004111, A067538, A143773, A289078, A289079, A295461, A298118, A298422, A298423, A298424.
%K A298426 nonn,tabl
%O A298426 1,24
%A A298426 _Gus Wiseman_, Jan 19 2018