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.

A174952 Triangle t(n,m)= binomial(n+m-1,n-1) + binomial(2*n-m-1,n-1) -binomial(2*n-1,n-1) read by rows, 0<=m<=n.

This page as a plain text file.
%I A174952 #6 Jan 15 2013 17:00:18
%S A174952 1,1,1,1,1,1,1,-1,-1,1,1,-11,-15,-11,1,1,-51,-76,-76,-51,1,1,-204,
%T A174952 -315,-350,-315,-204,1,1,-785,-1226,-1422,-1422,-1226,-785,1,1,-2995,
%U A174952 -4683,-5523,-5775,-5523,-4683,-2995,1,1,-11431,-17830,-21142,-22528,-22528
%N A174952 Triangle t(n,m)= binomial(n+m-1,n-1) + binomial(2*n-m-1,n-1) -binomial(2*n-1,n-1) read by rows, 0<=m<=n.
%C A174952 Row sums are 1, 2, 3, 0, -35, -252, -1386, -6864, -32175, -145860, -646646,....
%F A174952 t(n,m) = t(n,n-m).
%e A174952 1;
%e A174952 1, 1;
%e A174952 1, 1, 1;
%e A174952 1, -1, -1, 1;
%e A174952 1, -11, -15, -11, 1;
%e A174952 1, -51, -76, -76, -51, 1;
%e A174952 1 -204, -315, -350, -315, -204, 1;
%e A174952 1, -785, -1226, -1422, -1422, -1226, -785, 1;
%e A174952 1, -2995, -4683, -5523, -5775, -5523, -4683, -2995, 1;
%e A174952 1, -11431, -17830, -21142, -22528, -22528, -21142, -17830, -11431, 1;
%e A174952 1, -43748, -68013, -80718, -86658, -88374, -86658, -80718, -68013, -43748, 1;
%p A174952 A174952 := proc(n,m)
%p A174952         binomial(n+m-1,n-1)+binomial(2*n-m-1,n-1) -binomial(2*n-1,n-1);
%p A174952 end proc: # _R. J. Mathar_, Jan 15 2013
%Y A174952 Cf. A158498, A059481
%K A174952 sign,tabl,easy
%O A174952 0,12
%A A174952 _Roger L. Bagula_, Apr 02 2010
%E A174952 Definition corrected and deobfuscated. _R. J. Mathar_, Jan 15 2013