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.

A348014 Triangle, read by rows, with row n forming the coefficients in Product_{k=0..n} (1 + k^k*x).

Original entry on oeis.org

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

Views

Author

Seiichi Manyama, Sep 24 2021

Keywords

Examples

			Triangle begins:
  1;
  1,    1;
  1,    5,      4;
  1,   32,    139,      108;
  1,  288,   8331,    35692,     27648;
  1, 3413, 908331, 26070067, 111565148, 86400000;
		

Crossrefs

Column k=1 gives A001923.
The diagonal of the triangle is A002109.

Programs

  • 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));

Formula

T(0,0) = 1; T(n,k) = T(n-1,k) + n^n * T(n-1,k-1).