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!)
A279015 Greatest possible number of diagonals of a polyhedron having n faces. 6
0, 0, 4, 10, 20, 34, 52, 73, 100, 128, 162, 199, 240, 285, 334, 387, 444, 505, 570, 639, 712, 789, 870, 955, 1044, 1137, 1234, 1335, 1440, 1549, 1662, 1779, 1900, 2025, 2154, 2287, 2424, 2565, 2710, 2859, 3012, 3169, 3330, 3495, 3664, 3837, 4014, 4195, 4380, 4569 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,3
COMMENTS
Also the greatest possible number of diagonals of a simple polyhedron with n faces. In other words, a polyhedron with n faces having the greatest possible number of diagonals must be a simple one.
LINKS
D. Bremner, V. Klee, Inner Diagonals of Convex Polytopes, Journal of Combinatorial Theory, Series A, Volume 87, Issue 1, July 1999, Pages 175-197.
Vladimir Letsko, Mathematical Marathon, Problem 219 (in Russian)
FORMULA
a(n) = 2*n^2 - 21*n + 64 for n=12 or n>=14.
From Colin Barker, Dec 05 2016: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n>8.
G.f.: x^6*(4 - 2*x + 2*x^2 - x^5 + 3*x^6 - 5*x^7 + 5*x^8 - 3*x^9 + x^10) / (1 - x)^3.
(End)
EXAMPLE
a(6)=4 because 6 is the greatest possible number of diagonals of a hexahedron.
MAPLE
F:=n->piecewise(4<=n and n<=5, 0, 6<=n and n<=10, 2*n^2-20*n+52, n=11, 73, n=13, 128, n=12 or n>=14, 2*n^2-21*n+64);
MATHEMATICA
Drop[#, 4] &@ CoefficientList[Series[x^6*(4 - 2 x + 2 x^2 - x^5 + 3 x^6 - 5 x^7 + 5 x^8 - 3 x^9 + x^10)/(1 - x)^3, {x, 0, 53}], x] (* Michael De Vlieger, Dec 05 2016 *)
PROG
(PARI) concat(vector(2), Vec(x^6*(4 - 2*x + 2*x^2 - x^5 + 3*x^6 - 5*x^7 + 5*x^8 - 3*x^9 + x^10) / (1 - x)^3 + O(x^30))) \\ Colin Barker, Dec 05 2016
CROSSREFS
Sequence in context: A099589 A008141 A119651 * A005893 A301034 A301030
KEYWORD
nonn,easy
AUTHOR
Vladimir Letsko, Dec 03 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 May 5 21:49 EDT 2024. Contains 372290 sequences. (Running on oeis4.)