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 A134426 #10 Nov 15 2019 23:37:02 %S A134426 1,3,2,11,12,4,45,62,36,8,197,312,240,96,16,903,1570,1440,784,240,32, %T A134426 4279,7956,8244,5472,2320,576,64,20793,40670,46116,35224,18480,6432, %U A134426 1344,128,103049,209712,254912,216384,132320,57600,17024,3072,256 %N A134426 Triangle read by rows: T(n,k) is the number of paths of length n in the first quadrant, starting at the origin, ending at height k and consisting of 2 kind of upsteps U=(1,1) (U1 and U2), 3 kind of flatsteps F=(1,0) (F1, F2 and F3) and 1 kind of downsteps D=(1,-1). %C A134426 T(n,0) = A001003(n+1) (the little Schroeder numbers). %C A134426 Row sums yield A134425. %F A134426 T(n,k) = ((k+1)*2^k/(n+1))*Sum_{j=0..n-k} binomial(n+1, j)*binomial(n+1, k+j+1)*2^j (0 <= k <= n). %F A134426 G.f.: g/(1-2*t*z*g), where g = 1 + 3*z*g + 2*z^2*g^2 is the g.f. of the little Schroeder numbers 1, 3, 11, 45, 197, ... (A001003). %e A134426 T(2,1)=12 because we have 6 paths of shape FU and 6 paths of shape UF. %e A134426 Triangle starts: %e A134426 1; %e A134426 3, 2; %e A134426 11, 12, 4; %e A134426 45, 62, 36, 8; %e A134426 197, 312, 240, 96, 16; %p A134426 T:=proc(n,k) options operator,arrow: 2^k*(k+1)*(sum(2^j*binomial(n+1,j)*binomial(n+1, k+1+j),j=0..n-k))/(n+1) end proc: for n from 0 to 8 do seq(T(n, k),k=0..n) end do; # yields sequence in triangular form %Y A134426 Cf. A001003, A134425. %K A134426 nonn,tabl %O A134426 0,2 %A A134426 _Emeric Deutsch_, Nov 05 2007