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-2 of 2 results.

A125209 Irregular triangle read by rows: T(n,k) (n>=1, 0<=k<=n(n-1)/2) is such that Sum_k T(n,k)*p^(n*(n-1)/2-k) gives the expectation of the number of connected components after deleting every edge of the complete graph on n labeled vertices with probability p.

Original entry on oeis.org

1, 1, 1, -1, 3, 0, 1, 2, -6, 3, 4, 0, 0, 1, -6, 20, -15, -10, 10, 0, 5, 0, 0, 0, 1, 24, -90, 90, 25, -60, 0, -5, 15, 0, 0, 6, 0, 0, 0, 0, 1, -120, 504, -630, 0, 420, -105, 0, -105, 0, 35, -21, 21, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 720, -3360, 5040, -1176, -3150, 1680, 140, 560, -210, -280, 112
Offset: 1

Views

Author

Max Alekseyev, Jan 09 2007

Keywords

Comments

Row-reversed version of A125208, see A125208 for further details.

Examples

			Triangle begins:
   1;
   1,  1;
  -1,  3,   0,   1;
   2, -6,   3,   4,  0, 0, 1;
  -6, 20, -15, -10, 10, 0, 5, 0, 0, 0, 1;
  ...
		

Crossrefs

Cf. A125208 (row-reversed version), A127258 (dual version).

A125210 Irregular triangle read by rows: T(n,k) (n>=1, 0<=k<=n(n-1)/2) is such that Sum_k T(n,k)*q^k gives the expectation of the number of connected components in a random graph on n labeled vertices where every edge is present with probability q.

Original entry on oeis.org

1, 2, -1, 3, -3, 0, 1, 4, -6, 0, 4, 3, -6, 2, 5, -10, 0, 10, 15, -18, -60, 130, -105, 40, -6, 6, -15, 0, 20, 45, -18, -330, 60, 2445, -6485, 8712, -7260, 3925, -1350, 270, -24, 7, -21, 0, 35, 105, 42, -980, -1950, 11760, 12355, -182721, 589281, -1128820, 1502550, -1471305
Offset: 1

Views

Author

Max Alekseyev, Jan 09 2007

Keywords

Examples

			Triangle begins:
  1;
  2,  -1;
  3,  -3,  0,  1;
  4,  -6,  0,  4,  3,  -6,   2;
  5, -10,  0, 10, 15, -18, -60, 130, -105, 40, -6;
...
Sum_k T(3,k)*q^k = 3-3*q+q^3 is the expectation of the number of connected components in a random graph on 3 labeled vertices where every edge is present with probability q.
		

Crossrefs

Cf. A125205, A125206, A127258 (row-reversed version), A125208 (dual version).

Programs

  • PARI
    { H=sum(n=0,6,x^n/(1-q)^(n*(n-1)/2)/n!); B=H*log(H); for(n=1,6,print(Vecrev((1-q)^(n*(n-1)/2)*n!*polcoeff(B,n,x)))) }

Formula

G.f.: Sum_{n,k} T(n,k)*x^n/((1-q)^(n*(n-1)/2)*n!) = H(x,1-q)*exp(H(x,1-q)) where H(x,p)=Sum_{n=1..oo} x^n/(p^(n*(n-1)/2)*n!).
Sum_k T(n,k)*q^k = Sum_k A125205(n,k)*(1-q)^(n*(n-1)/2-k)*q^k
Sum_k T(n,k)*q^k = Sum_k A125206(n,k)*q^(n*(n-1)/2-k)*(1-q)^k
Showing 1-2 of 2 results.