login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A348014
Triangle, read by rows, with row n forming the coefficients in Product_{k=0..n} (1 + k^k*x).
1
1, 1, 1, 1, 5, 4, 1, 32, 139, 108, 1, 288, 8331, 35692, 27648, 1, 3413, 908331, 26070067, 111565148, 86400000, 1, 50069, 160145259, 42405161203, 1216436611100, 5205269945088, 4031078400000
OFFSET
0,5
LINKS
Seiichi Manyama, Rows n = 0..37, flattened
FORMULA
T(0,0) = 1; T(n,k) = T(n-1,k) + n^n * T(n-1,k-1).
EXAMPLE
Triangle begins:
1;
1, 1;
1, 5, 4;
1, 32, 139, 108;
1, 288, 8331, 35692, 27648;
1, 3413, 908331, 26070067, 111565148, 86400000;
PROG
(PARI) T(n, k) = if(k==0, 1, if(k==n, prod(j=1, n, j^j), T(n-1, k)+n^n*T(n-1, k-1)));
(PARI) row(n) = Vecrev(prod(k=1, n, 1+k^k*x));
CROSSREFS
Column k=1 gives A001923.
The diagonal of the triangle is A002109.
Sequence in context: A182824 A329120 A152862 * A108440 A102220 A279151
KEYWORD
nonn,tabl
AUTHOR
Seiichi Manyama, Sep 24 2021
STATUS
approved