| Displaying 1-4 of 4 results found.
page
1
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^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.
+30
3
1, 1, 1, 1, 0, 3, -1, 1, 0, 0, 4, 3, -6, 2, 1, 0, 0, 0, 5, 0, 10, -10, -15, 20, -6, 1, 0, 0, 0, 0, 6, 0, 0, 15, -5, 0, -60, 25, 90, -90, 24, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 21, -21, 35, 0, -105, 0, -105, 420, 0, -630, 504, -120, 1, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 28, -28, 0, 56, 35, -168, 112, -280
FORMULA
G.f.: Sum_{n,k} T(n,k)*x^n/(p^(n*(n-1)/2)*n!) = H(x,p)*exp(H(x,p)) where H(x,p)=Sum_{n=1..oo} x^n/(p^(n*(n-1)/2)*n!).
Sum_k T(n,k)*p^k = Sum_k A125205(n,k)*p^(n*(n-1)/2-k)*(1-p)^k
EXAMPLE
Triangle begins:
1;
1, 1;
1, 0, 3, -1;
1, 0, 0, 4, 3, -6, 2;
1, 0, 0, 0, 5, 0, 10, -10, -15, 20, -6;
...
Sum_k T(3,k)*p^k = 1+3*p^2-p^3 is the expectation of the number of connected components in a complete graph on 3 labeled vertices where every edge is removed with probability p.
PROG
(PARI) { H=sum(n=0, 6, x^n/p^(n*(n-1)/2)/n!); A=H*log(H); for(n=1, 6, print(Vecrev(p^(n*(n-1)/2)*n!*polcoeff(A, n, x)))) }
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.
+10
3
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
EXAMPLE
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;
...
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.
+10
2
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
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
EXAMPLE
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.
PROG
(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)))) }
Number of orderings of the edges of the labeled complete graph K_n such that the graph induced by the first k edges is connected for every k = 1,2,...,binomial(n,2).
+10
1
1, 1, 6, 576, 2073600, 498161664000, 12385682950717440000, 45484508287062207627264000000, 33297304775599549535597153400913920000000, 6298496203530014357849150420174490961843322880000000000, 387030157006015555733158587399026951851936435957496524308480000000000000
FORMULA
a(n) = binomial(n,2)! * 2^(n-2) / A000108(n-1), for n > 1.
a(n) ~ Pi * n^(n^2-n+5/2) / (2^(n*(n+1)/2) * exp(n^2/2 - 1/4 - 1/(12*n))). - Amiram Eldar, Nov 16 2025
MATHEMATICA
Join[{1}, Table[Binomial[n, 2]!*2^(n-2)*n/Binomial[2*n-2, n-1], {n, 2, 20}]] (* G. C. Greubel, Aug 03 2018 *)
PROG
(PARI) {a(n) = if( n<2, n>0, binomial(n, 2)! * 2^(n-2) * n / binomial(2*n-2, n-1))}; /* Michael Somos, Jul 23 2015 */
(Magma) [1] cat [Factorial(Binomial(n, 2))*2^(n-2)*n/Binomial(2*n-2, n-1): n in [2..20]]; // G. C. Greubel, Aug 03 2018
Search completed in 0.002 seconds
|