login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A248971
Triangular array read by rows. T(n,k)=C(k,2)+C(n-k,2),n>=2,1<=k<=floor(n/2).
0
0, 1, 3, 2, 6, 4, 10, 7, 6, 15, 11, 9, 21, 16, 13, 12, 28, 22, 18, 16, 36, 29, 24, 21, 20, 45, 37, 31, 27, 25, 55, 46, 39, 34, 31, 30, 66, 56, 48, 42, 38, 36, 78, 67, 58, 51, 46, 43, 42, 91, 79, 69, 61, 55, 51, 49, 105, 92, 81, 72, 65, 60, 57, 56
OFFSET
2,3
COMMENTS
G is a simple graph of order n with exactly 2 components each of which is complete. T(n,k) is the total number of edges in G when one component contains exactly k vertices.
EXAMPLE
0,
1,
3, 2,
6, 4,
10, 7, 6,
15, 11, 9,
21, 16, 13, 12,
28, 22, 18, 16,
36, 29, 24, 21, 20
MATHEMATICA
Table[Table[Binomial[k, 2] + Binomial[n - k, 2], {k, 1, n/2}], {n, 2,
10}] // Grid
PROG
(Magma) [Binomial(k, 2)+Binomial(n-k, 2): k in [1..Floor(n/2)], n in [1..16]]; // Vincenzo Librandi, Oct 19 2014
CROSSREFS
Cf. A000217 (column 1), A000124 (column 2), A152950 (column 3), A002620 (row ends).
Sequence in context: A249742 A246276 A091018 * A329435 A160795 A258212
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, Oct 18 2014
STATUS
approved