A366541 Regular triangle read by rows: T(n,k) is the number of k-facets of the bipyramid on an n-simplex base.
2, 4, 4, 5, 9, 6, 6, 14, 16, 8, 7, 20, 30, 25, 10, 8, 27, 50, 55, 36, 12, 9, 35, 77, 105, 91, 49, 14, 10, 44, 112, 182, 196, 140, 64, 16, 11, 54, 156, 294, 378, 336, 204, 81, 18, 12, 65, 210, 450, 672, 714, 540, 285, 100, 20, 13, 77, 275, 660, 1122, 1386, 1254, 825, 385, 121, 22
Offset: 0
Examples
The triangle T(n, k) begins: n\k 0 1 2 3 4 5 6 7 8 9 10 0 2 1 4 4 2 5 9 6 3 6 14 16 8 4 7 20 30 25 10 5 8 27 50 55 36 12 6 9 35 77 105 91 49 14 7 10 44 112 182 196 140 64 16 8 11 54 156 294 378 336 204 81 18 9 12 65 210 450 672 714 540 285 100 20 10 13 77 275 660 1122 1386 1254 825 385 121 22 n = 0: the segment has 2 vertices; n = 1: the quadrilateral has 4 vertices and 4 sides; n = 2: the triangular bipyramid has 5 vertices, 9 edges and 6 faces; n = 3: the tetrahedral bipyramid has 6 vertices, 14 edges, 16 faces and 8 cells.
Links
- Jianing Song, Table of n, a(n) for n = 0..5150 (Rows n = 0..100)
- Math Overflow, 4-polytopes with only one kind of regular facet.
- Math Overflow, Convex deltahedra in higher dimensions.
- Mathematics Stack Exchange, Group symmetries of a trigonal bipyramidal molecule.
- Roswitha Blind, Jürgen Tölke and Jörg M. Wills, Konvexe Polytope mit regulären Facetten im R^n (n>=4) (in German), Contributions to Geometry: Proceedings of the Geometry-Symposium held in Siegen June 28, 1978 to July 1, 1978.
Crossrefs
A014410(n+1,k) is the number of k-facets of the n-simplex.
Programs
-
PARI
T(n,k) = if(k
Formula
T(n,k) = 2*(number of k-facets of the (n+1)-simplex) - (number of k-facets of the n-simplex) = 2*binomial(n+2,k+1) - binomial(n+1,k+1) for 0 <= k <= n-1; T(n,n) = 2*(number of n-facets of the (n+1)-simplex) - (2 cells as base) = 2*binomial(n+2,n+1) - 2 = 2*(n+1).
Comments