cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A304635 Triangle T(n,j) read by rows: the number of j-faces in the hypersimplicial decomposition of the unit cube of n dimensions.

This page as a plain text file.
%I A304635 #7 May 15 2018 17:06:02
%S A304635 1,5,2,18,14,3,56,64,27,4,160,240,150,44,5,432,800,660,288,65,6,1120,
%T A304635 2464,2520,1456,490,90,7,2816,7168,8736,6272,2800,768,119,8,6912,
%U A304635 19968,28224,24192,13440,4896,1134,152,9,16640,53760,86400,86016,57120,25920,7980,1600,189,10
%N A304635 Triangle T(n,j) read by rows: the number of j-faces in the hypersimplicial decomposition of the unit cube of n dimensions.
%H A304635 T. Hibi, N. Li, H. Ohsugi, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL18/Li/li41.html">The Face Vector of a Half-Open Hypersimplex</a>, J. Int. Seq. 18 (2015) 15.6.6
%F A304635 T(n,j) = j*2^(n-j-1)*(n+j+2)*binomial(n+,j+1)/(n+1).
%e A304635 The triangle starts in row n>= for 1<=j<=n as:
%e A304635   1,
%e A304635 5,2,
%e A304635 18,14,3,
%e A304635 56,64,27,4,
%e A304635 160,240,150,44,5,
%e A304635 432,800,660,288,65,6,
%e A304635 1120,2464,2520,1456,490,90,7,
%e A304635 2816,7168,8736,6272,2800,768,119,8,
%e A304635 6912,19968,28224,24192,13440,4896,1134,152,9,
%e A304635 16640,53760,86400,86016,57120,25920,7980,1600,189,10,
%p A304635 A304635 := proc(n,j)
%p A304635         j*2^(n-j-1)*(n+j+2)/(n+1)*binomial(n+1,j+1) ;
%p A304635 end proc:
%Y A304635 Cf. A001793 (column j=1), A001794 (half of column j=2), A006974 (3rd of column j=3), A014106 (subdiagonal).
%K A304635 nonn,tabl,easy
%O A304635 1,2
%A A304635 _R. J. Mathar_, May 15 2018