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.

A143911 Triangle read by rows: T(n,k) = number of forests on n labeled nodes, where k is the maximum of the number of edges per tree (n>=1, 0<=k<=n-1).

This page as a plain text file.
%I A143911 #21 Sep 07 2018 16:44:41
%S A143911 1,1,1,1,3,3,1,9,12,16,1,25,60,80,125,1,75,330,480,750,1296,1,231,
%T A143911 1680,3920,5250,9072,16807,1,763,9408,33600,49000,72576,134456,262144,
%U A143911 1,2619,56952,254016,598500,762048,1210104,2359296,4782969,1,9495,348120
%N A143911 Triangle read by rows: T(n,k) = number of forests on n labeled nodes, where k is the maximum of the number of edges per tree (n>=1, 0<=k<=n-1).
%H A143911 Alois P. Heinz, <a href="/A143911/b143911.txt">Rows n = 1..141, flattened</a>
%F A143911 See program.
%e A143911 T(4,1) = 9, because 9 forests on 4 labeled nodes have 1 as the maximum of the number of edges per tree:
%e A143911   .1-2. .1.2. .1.2. .1.2. .1.2. .1.2. .1-2. .1.2. .1.2.
%e A143911   ..... ...|. ..... .|... ..\.. ../.. ..... .|.|. ..X..
%e A143911   .4.3. .4.3. .4-3. .4.3. .4.3. .4.3. .4-3. .4.3. .4.3.
%e A143911 Triangle begins:
%e A143911   1;
%e A143911   1,  1;
%e A143911   1,  3,   3;
%e A143911   1,  9,  12,  16;
%e A143911   1, 25,  60,  80, 125;
%e A143911   1, 75, 330, 480, 750, 1296;
%p A143911 A:= (n,k)-> coeff(series(exp(add(j^(j-2) *x^j/j!, j=1..k)), x, n+1), x,n)*n!: T:= (n,k)-> A(n,k+1)-A(n,k): seq(seq(T(n,k), k=0..n-1), n=1..11);
%t A143911 A[n_, k_] := SeriesCoefficient[Exp[Sum[j^(j-2)*x^j/j!, {j, 1, k}]], {x, 0, n}]*n!; T[n_, k_] := A[n, k+1] - A[n, k];
%t A143911 Table[T[n, k], {n, 1, 11}, {k, 0, n-1}] // Flatten (* _Jean-François Alcover_, May 31 2016, translated from Maple *)
%Y A143911 Columns k=0-1 give: A000012, A001189.
%Y A143911 Row sums give A001858.
%Y A143911 Rightmost diagonal gives A000272.
%Y A143911 Cf. A138464.
%K A143911 nonn,tabl
%O A143911 1,5
%A A143911 _Alois P. Heinz_, Sep 04 2008