A135610 Triangle read by rows: the k-th entry of row n is the number of particular connectivity requirements that a k-linked graph with n >= 2k vertices has to satisfy T(n,k) = (1/2) * n!/(k!*(n-2*k)!) where k runs from 1 to floor(n/2).
1, 3, 6, 6, 10, 30, 15, 90, 60, 21, 210, 420, 28, 420, 1680, 840, 36, 756, 5040, 7560, 45, 1260, 12600, 37800, 15120, 55, 1980, 27720, 138600, 166320, 66, 2970, 55440, 415800, 997920, 332640, 78, 4290, 102960, 1081080, 4324320, 4324320, 91, 6006
Offset: 1
Examples
If n=4 and k=1, then (1/2)*C(4,1)*C(4-1,1)*1! = 6, so there are 6 particular connectivity requirements that a 1-linked graph with 4 vertices has to satisfy. If n=4 and k=2, then (1/2)*C(4,2)*C(4-2,2)*2! = 6, so there are again 6 particular connectivity requirements that a 2-linked graph with 4 vertices has to satisfy. Triangle begins: 1; 3; 6, 6; 10, 30; 15, 90, 60; 21, 210, 420; 28, 420, 1680, 840; 36, 756, 5040, 7560; 45, 1260, 12600, 37800, 15120; ..
References
- R. Diestel, Graph Theory, 3rd edition, Springer 2005 (Chapter 3.5).
Links
- Peter C. Heinig, Table of n, a(n) for n = 1..100
- D. Kuhn and D. Osthus, Topological minors in graphs of large girth, J. Comb. Theory B 86 (2002), 364-380.
- W. Mader, Topological subgraphs in graphs of large girth, Combinatorica 18 (1998), 405-412.
Programs
-
Maple
seq(seq(n!/(k!*(n-2*k)!)/2, k=1..floor(n/2)), n=1..20);
Formula
T(n, k) = (1/2) * n!/(k!*(n-2*k)!).
Comments