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.

A291774 Triangle read by rows: chromatic invariant T(n,m) of the complete bipartite graph K_{m,n}.

Original entry on oeis.org

1, 0, 1, 0, 1, 5, 0, 1, 13, 73, 0, 1, 29, 301, 2069, 0, 1, 61, 1081, 11581, 95401, 0, 1, 125, 3613, 57749, 673261, 6487445, 0, 1, 253, 11593, 268381, 4306681, 55213453, 610093513, 0, 1, 509, 36301, 1191989, 25794781, 431525429, 6077248381, 75796724309, 0, 1, 1021, 111961, 5136061, 147587401, 3173843821, 56153444761, 864806272861, 12020754177001
Offset: 1

Views

Author

Eric W. Weisstein, Aug 31 2017

Keywords

Examples

			Triangle begins:
1
0 1
0 1 5
0 1 13 73
0 1 29 301 2069
		

Crossrefs

Main diagonal gives A048144.

Programs

  • Mathematica
    Join[{1}, Table[Sum[k! (-1)^(k + m) (k + 1)^n StirlingS2[m, k + 2], {k, 0, m - 1}], {n, 2, 10}, {m, n}]] // Flatten

Formula

T(m,n) = Sum_{k = 0..m-1} k!*(-1)^(k + m)*(k + 1)^n*Stirling2(m, k + 2) for max(m,n) > 1.