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.

A046860 Triangle giving a(n,k) = number of k-colored labeled graphs with n nodes.

Original entry on oeis.org

1, 1, 4, 1, 24, 48, 1, 160, 1152, 1536, 1, 1440, 30720, 122880, 122880, 1, 18304, 1152000, 10813440, 29491200, 23592960, 1, 330624, 65630208, 1348730880, 7707033600, 15854469120, 10569646080, 1, 8488960, 5858721792, 261070258176, 2853804441600, 11499774935040, 18940805775360, 10823317585920
Offset: 1

Views

Author

Keywords

Examples

			Triangle begins:
  1;
  1,     4;
  1,    24,      48;
  1,   160,    1152,     1536;
  1,  1440,   30720,   122880,   122880;
  1, 18304, 1152000, 10813440, 29491200, 23592960;
  ...
		

Crossrefs

Column #1 gives A000683.
Main diagonal gives A011266.
Row sums give A334282.

Programs

Formula

a(n, k) = Sum_{r=1..n-1} C(n, r) 2^(r*(n-r)) a(r, k-1).
1 + Sum_{n>=1} Sum_{k=1..n} a(n,k)*y^k*x^n/(n!*2^C(n,2)) = 1/(1-y(E(x)-1)) where E(x) = Sum_{n>=0} x^n/(n!*2^C(n,2)). - Geoffrey Critzer, May 06 2020

Extensions

More terms from Vladeta Jovovic, Feb 04 2000