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.

A177040 Irregular triangle t(n,m) = binomial(m+1,n-m) read by rows floor((n+1)/2) <= m <= n.

This page as a plain text file.
%I A177040 #9 May 19 2013 23:59:31
%S A177040 1,1,2,1,3,1,3,4,1,6,5,1,4,10,6,1,10,15,7,1,5,20,21,8,1,15,35,28,9,1,
%T A177040 6,35,56,36,10,1,21,70,84,45,11,1,7,56,126,120,55,12,1,28,126,210,165,
%U A177040 66,13,1,8,84,252,330,220,78,14,1,36,210,462,495,286,91,15,1
%N A177040 Irregular triangle t(n,m) = binomial(m+1,n-m) read by rows floor((n+1)/2) <= m <= n.
%C A177040 Row sums are in A052952.
%C A177040 Contains the right half of each row of A030528. - _R. J. Mathar_, May 19 2013
%e A177040 1;
%e A177040 1;
%e A177040 2, 1;
%e A177040 3, 1;
%e A177040 3, 4, 1;
%e A177040 6, 5, 1;
%e A177040 4, 10, 6, 1;
%e A177040 10, 15, 7, 1;
%e A177040 5, 20, 21, 8, 1;
%e A177040 15, 35, 28, 9, 1;
%e A177040 6, 35, 56, 36, 10, 1;
%e A177040 21, 70, 84, 45, 11, 1;
%e A177040 7, 56, 126, 120, 55, 12, 1;
%e A177040 28, 126, 210, 165, 66, 13, 1;
%e A177040 8, 84, 252, 330, 220, 78, 14, 1;
%e A177040 36, 210, 462, 495, 286, 91, 15, 1;
%t A177040 t[n_, m_] := Binomial[m + 1, n - m];
%t A177040 Table[Table[t[n, m], {m, Floor[(n + 1)/2], n}], {n, 0, 15}];
%t A177040 Flatten[%]
%o A177040 (PARI) T(m,n)=binomial(n+1,m-n) \\ _Charles R Greathouse IV_, May 19 2013
%Y A177040 Cf. A180987 (read diagonally downwards), A098925, A026729, A085478, A165253
%K A177040 nonn,tabf,easy
%O A177040 0,3
%A A177040 _Roger L. Bagula_, May 01 2010