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.

A088326 Triangle T(n,k) (n>=1, 1<=k<=n) read by rows, giving number of Piet Hut's "coat-hanger" arrangements: unlabeled forests of rooted trees with n edges and k connected components, in which the outdegree of each node is <= 2 and the symmetric group acts on the components.

This page as a plain text file.
%I A088326 #20 Jan 12 2025 09:20:18
%S A088326 1,1,1,2,1,1,3,3,1,1,6,5,3,1,1,11,12,6,3,1,1,23,23,14,6,3,1,1,46,52,
%T A088326 29,15,6,3,1,1,98,109,68,31,15,6,3,1,1,207,244,147,74,32,15,6,3,1,1,
%U A088326 451,532,337,163,76,32,15,6,3,1,1,983,1196,757,380,169,77,32,15,6,3,1,1
%N A088326 Triangle T(n,k) (n>=1, 1<=k<=n) read by rows, giving number of Piet Hut's "coat-hanger" arrangements: unlabeled forests of rooted trees with n edges and k connected components, in which the outdegree of each node is <= 2 and the symmetric group acts on the components.
%H A088326 Alois P. Heinz, <a href="/A088326/b088326.txt">Rows n = 1..141, flattened</a>
%F A088326 G.f.: exp( Sum_{k>=1} z^k*B(x^k)/k ), where B(x) = x + x^2 + 2*x^3 + 3*x^4 + 6*x^5 + 11*x^6 + ... = G001190(x)/x - 1 and G001190 is the g.f. for the Wedderburn-Etherington numbers A001190.
%F A088326 G.f.: Product_{j>=1} 1/(1-y*x^j)^A001190(j+1). - _Alois P. Heinz_, Sep 11 2017
%e A088326 See A088325 for illustration.
%e A088326 Triangle begins
%e A088326    1
%e A088326    1  1
%e A088326    2  1 1
%e A088326    3  3 1 1
%e A088326    6  5 3 1 1
%e A088326   11 12 6 3 1 1
%e A088326   ...
%p A088326 g:= proc(n) option remember; `if`(n<2, n, `if`(n::odd, 0,
%p A088326       (t-> t*(1-t)/2)(g(n/2)))+add(g(i)*g(n-i), i=1..n/2))
%p A088326     end:
%p A088326 b:= proc(n, i, p) option remember; `if`(p>n, 0, `if`(n=0, 1,
%p A088326       `if`(min(i, p)<1, 0, add(b(n-i*j, i-1, p-j)*binomial(
%p A088326        g(i+1)+j-1, j), j=0..min(n/i, p)))))
%p A088326     end:
%p A088326 T:= (n, k)-> b(n$2, k):
%p A088326 seq(seq(T(n, k), k=1..n), n=1..14);  # _Alois P. Heinz_, Sep 11 2017
%t A088326 g[n_] := g[n] = If[n<2, n, If[OddQ[n], 0, Function[t, t*(1-t)/2][g[n/2]]] + Sum[g[i]*g[n - i], {i, 1, n/2}]];
%t A088326 b[n_, i_, p_] := b[n, i, p] = If[p>n, 0, If[n == 0, 1, If[Min[i, p]<1, 0, Sum[b[n-i*j, i-1, p-j]*Binomial[g[i+1]+j-1, j], {j, 0, Min[n/i, p]}]]]];
%t A088326 T[n_, k_] := b[n, n, k];
%t A088326 Table[T[n, k], {n, 1, 14}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Jun 11 2018, after _Alois P. Heinz_ *)
%Y A088326 First 3 columns are A001190, A036657, A036658.
%Y A088326 Row sums are A088325.
%Y A088326 T(2n,n) gives A305839.
%K A088326 nonn,tabl,easy
%O A088326 1,4
%A A088326 _N. J. A. Sloane_, Nov 06 2003
%E A088326 More terms from _Vladeta Jovovic_, Nov 06 2003