login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A279681 Irregular triangle read by rows: possible numbers of diagonals of convex polyhedra having n vertices. 3
0, 0, 1, 0, 1, 2, 3, 0, 1, 2, 3, 4, 5, 6, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,6
COMMENTS
Let n>4 denote the number of vertices. The set of possible numbers of diagonals is the union of sets {(k-1)(n-k-4), ..., (k-1)(n-(k+6)/2)}, where 1 <= k <= floor((sqrt(8n-15)-5)/2), and the set {(k-1)(n-k-4), ..., (n-3)(n-4)/2}, where k = floor((sqrt(8n-15)-3)/2). Note that cardinalities of all sets of this union excluding the last one are consecutive triangular numbers.
LINKS
Vladimir Letsko, Table of rows of a(n)
EXAMPLE
Triangle begins:
4 | 0;
5 | 0, 1;
6 | 0, 1, 2, 3;
7 | 0, 1, 2, 3, 4, 5, 6;
8 | 0, 2, 3, 4, 5, 6, 7, 8, 9, 10;
9 | 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15;
10 | 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21;
MAPLE
dm:=(n, k)->simplify((n-1)*n/2-(2*n-k-1)-(n-k)*(n-k-3)/2-2*(k-1)-(k+2)*(k-1)/2);
dM:=(n, k)->simplify((n-1)*n/2-2*n-k+3-(n-k)*(n-k-3)/2);
Dv:=proc(n) local k, DD; DD:={0}:for k from 2 to n/2-1 do
DD:=DD union {seq(i, i=dm(n, k)..dM(n, k))} od:
DD:=DD union {seq(i, i=dm(n, k-1)..(n-3)*(n-4)/2)}:
DD end;
CROSSREFS
Row lengths are in A023536.
Sequence in context: A293497 A278164 A328480 * A053645 A212598 A362190
KEYWORD
nonn,tabf
AUTHOR
Vladimir Letsko, Dec 16 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)