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.

A130746 Triangle read by rows: T(n,m) = binomial(n+m,1+n), 1<=m<=n.

This page as a plain text file.
%I A130746 #10 Apr 24 2024 11:39:33
%S A130746 1,1,4,1,5,15,1,6,21,56,1,7,28,84,210,1,8,36,120,330,792,1,9,45,165,
%T A130746 495,1287,3003,1,10,55,220,715,2002,5005,11440,1,11,66,286,1001,3003,
%U A130746 8008,19448,43758,1,12,78,364,1365,4368,12376,31824,75582,167960
%N A130746 Triangle read by rows: T(n,m) = binomial(n+m,1+n), 1<=m<=n.
%C A130746 Row sums are A002054.
%e A130746 1;
%e A130746 1, 4;
%e A130746 1, 5, 15;
%e A130746 1, 6, 21, 56;
%e A130746 1, 7, 28, 84, 210;
%e A130746 1, 8, 36, 120, 330, 792;
%e A130746 1, 9, 45, 165, 495, 1287, 3003;
%e A130746 1, 10, 55, 220, 715, 2002, 5005, 11440;
%t A130746 Table[Table[Binomial[n + i, i + 1], {n, 1, i}], {i, 1, 10}] Flatten[%]
%Y A130746 Cf. A178300, A046899, A059481, A002054, A000292.
%K A130746 nonn,tabl,easy
%O A130746 1,3
%A A130746 _Roger L. Bagula_, Jul 12 2007