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.

Showing 1-1 of 1 results.

A362839 Square array T(n,k), n >= 0, k >= 0, read by antidiagonals downwards, where T(n,k) = n! * Sum_{j=0..floor(n/2)} k^(n-j) * Stirling2(n-j,j)/(n-j)!.

Original entry on oeis.org

1, 1, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 4, 3, 0, 1, 0, 6, 12, 16, 0, 1, 0, 8, 27, 80, 65, 0, 1, 0, 10, 48, 216, 560, 336, 0, 1, 0, 12, 75, 448, 2025, 4512, 1897, 0, 1, 0, 14, 108, 800, 5120, 21708, 40768, 11824, 0, 1, 0, 16, 147, 1296, 10625, 67584, 260253, 407808, 80145, 0
Offset: 0

Views

Author

Seiichi Manyama, May 05 2023

Keywords

Examples

			Square array begins:
  1,  1,   1,    1,    1,     1, ...
  0,  0,   0,    0,    0,     0, ...
  0,  2,   4,    6,    8,    10, ...
  0,  3,  12,   27,   48,    75, ...
  0, 16,  80,  216,  448,   800, ...
  0, 65, 560, 2025, 5120, 10625, ...
		

Crossrefs

Columns k=0..3 give: A000007, A052506, A351736, A351737.
Main diagonal gives A356806.
Cf. A362652.

Programs

  • PARI
    T(n, k) = n!*sum(j=0, n\2, k^(n-j)*stirling(n-j, j, 2)/(n-j)!);

Formula

E.g.f. of column k: exp(x * (exp(k * x) - 1)).
G.f. of column k: Sum_{j>=0} x^j / (1 - (k*j-1)*x)^(j+1).
T(n,k) = Sum_{j=0..n} (k*j-1)^(n-j) * binomial(n,j).
Showing 1-1 of 1 results.