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.
%I A050155 #39 Jan 05 2025 19:51:36 %S A050155 1,3,1,9,5,1,28,20,7,1,90,75,35,9,1,297,275,154,54,11,1,1001,1001,637, %T A050155 273,77,13,1,3432,3640,2548,1260,440,104,15,1,11934,13260,9996,5508, %U A050155 2244,663,135,17,1,41990,48450,38760,23256,10659,3705,950,170,19,1 %N A050155 Triangle T(n,k), k>=0 and n>=1, read by rows defined by: T(n,k) = (2k+3)*binomial(2n,n-k-1)/(n+k+2). %C A050155 T(n-2k-1,k) = number of n-th generation vertices in the tree of sequences with unit increase labeled by 2k+2 (cf. _Zoran Sunic_ reference) . - _Benoit Cloitre_, Oct 07 2003 %C A050155 Number of lattice paths from (0,0) to (n,n) with steps E=(1,0) and N=(0,1) which touch but do not cross the line x-y=k+1 . - _Herbert Kociemba_, May 24 2004 %C A050155 Number of standard tableaux of shape (n+k+1, n-k-1). - _Emeric Deutsch_, May 30 2004 %C A050155 Riordan array (c(x)^3,xc(x)^2) where c(x) is the g.f. of A000108. Inverse array is A109954. - _Paul Barry_, Jul 06 2005 %H A050155 Alois P. Heinz, <a href="/A050155/b050155.txt">Rows n = 1..141, flattened</a> %H A050155 R. K. Guy, Catwalks, Sansteps and Pascal Pyramids, <a href="http://www.cs.uwaterloo.ca/journals/JIS/index.html">J. Integer Seq., Vol. 3 (2000), #00.1.6</a> %H A050155 V. E. Hoggatt, Jr. and M. Bicknell, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Scanned/14-5/hoggatt1.pdf">Catalan and related sequences arising from inverses of Pascal's triangle matrices</a>, Fib. Quart., 14 (1976), 395-405. %H A050155 A. Papoulis, <a href="http://www.jstor.org/stable/43636019">A new method of inversion of the Laplace transform</a>, Quart. Appl. Math 14 (1957), 405-414. %H A050155 J. Riordan, <a href="http://www.jstor.org/stable/2005477">The distribution of crossings of chords joining pairs of 2n points on a circle</a>, Math. Comp., 29 (1975), 215-222. %H A050155 _Zoran Sunic_, <a href="http://www.combinatorics.org/ojs/index.php/eljc/article/view/v10i1n5">Self-Describing Sequences and the Catalan Family Tree</a>, Electronic Journal of Combinatorics, 10 (2003) #N5. %F A050155 Sum_{ k = 0, .., n-1} T(n, k) = binomial(2n, n-1) = A001791(n). %F A050155 G.f. of column k: x^(k+1)*C^(2*k+3) where C = (1-(1-4*x)^(1/2))/(2*x) is the g.f. of Catalan numbers A000108. - _Philippe Deléham_, Feb 03 2004 %F A050155 T(n, k) = A039599(n, k+1) = A009766(n+k+1, n-k-1) = A033184(n+k+2, 2k+3) . - _Philippe Deléham_, May 28 2005 %F A050155 Sum_{k>= 0} T(m, k)*T(n, k) = A000108(m+n) - A000108(m)*A000108(n). - _Philippe Deléham_, May 28 2005 %F A050155 T(n, k)=(2k+3)binomial(2n+2, n+k+2)/(n+k+3)=C(2n+2, n+k+2)-C(2n+2, n+k+3) [offset (0, 0)]. - _Paul Barry_, Jul 06 2005 %e A050155 1; %e A050155 3, 1; %e A050155 9, 5, 1; %e A050155 28, 20, 7, 1; %e A050155 90, 75, 35, 9, 1; %e A050155 297, 275, 154, 54, 11, 1; %e A050155 ... %p A050155 T:= (n, k)-> (2*k+3)*binomial(2*n, n-k-1)/(n+k+2): %p A050155 seq(seq(T(n, k), k=0..n-1), n=1..10); # _Alois P. Heinz_, Jan 19 2013 %t A050155 T[n_, k_] := (2*k + 3)*Binomial[2*n, n - k - 1]/(n + k + 2); %t A050155 Table[T[n, k], {n, 1, 10}, {k, 0, n - 1}] // Flatten (* _Jean-François Alcover_, May 21 2016 *) %Y A050155 First columns: A000245, A000344, A000588, A001392, A000589, A000590. %Y A050155 Cf. A000108, A001791 (row sums), A050144. %K A050155 nonn,tabl %O A050155 1,2 %A A050155 _Clark Kimberling_ %E A050155 Edited by _Philippe Deléham_, May 22 2005