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.

A055883 Exponential transform of Pascal's triangle A007318.

Original entry on oeis.org

1, 1, 1, 2, 4, 2, 5, 15, 15, 5, 15, 60, 90, 60, 15, 52, 260, 520, 520, 260, 52, 203, 1218, 3045, 4060, 3045, 1218, 203, 877, 6139, 18417, 30695, 30695, 18417, 6139, 877, 4140, 33120, 115920, 231840, 289800, 231840, 115920, 33120, 4140, 21147
Offset: 0

Views

Author

Christian G. Bower, Jun 09 2000

Keywords

Comments

Triangle T(n,k), 0 <= k <= n, read by rows, given by [1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, ...] DELTA [1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, ...] where DELTA is the operator defined in A084938. - Philippe Deléham, Aug 10 2005

Examples

			   1;
   1,  1;
   2,  4,  2;
   5, 15, 15,  5;
  15, 60, 90, 60, 15;
  ...
		

Crossrefs

Row sums give A055882.

Programs

  • Mathematica
    T[ n_, k_] := Binomial[n, k] * BellB[n]; (* Michael Somos, Apr 09 2025 *)
  • PARI
    T(n, k) = binomial(n, k) * sum(j=0, n, stirling(n, j, 2)); /* Michael Somos, Apr 09 2025 */

Formula

a(n,k) = Bell(n)*C(n,k).
E.g.f.: A(x,y) = exp(exp(x+xy)-1).