login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A232969 The sequence S(n,n) that enumerates a certain class of lattice paths from (0,0) to (n,n). 2

%I #20 Sep 21 2021 11:51:03

%S 1,6,60,675,7992,97416,1209951,15227190,193507056,2477564820,

%T 31910429520,412987306320,5366341375695,69965422235442,

%U 914825583252396,11991475839917115,157524763370404320,2073261181622482080,27333449595845251524,360903785815145617992

%N The sequence S(n,n) that enumerates a certain class of lattice paths from (0,0) to (n,n).

%C See Dziemianczuk for precise definition.

%H Alois P. Heinz, <a href="/A232969/b232969.txt">Table of n, a(n) for n = 0..884</a> (first 101 terms from Lars Blomberg)

%H M. Dziemianczuk, <a href="http://paperity.org/p/34654227/counting-lattice-paths-with-four-types-of-steps">Counting Lattice Paths With Four Types of Steps</a>, Graphs and Combinatorics, September 2013, DOI 10.1007/s00373-013-1357-1.

%p b:= proc(x, y) option remember; `if`([x, y]=[0$2], 1,

%p `if`(x>0, add(b(x-1, y+j), j=-1..1), 0)+

%p `if`(y>0, b(x, y-1), 0)+`if`(y<0, b(x, y+1), 0))

%p end:

%p a:= n-> b(n$2):

%p seq(a(n), n=0..22); # _Alois P. Heinz_, Sep 21 2021

%t Table[Function[k, Sum[Sum[Binomial[k, j] Binomial[j, i - j] Binomial[2 k + n - i, k], {j, 0, i}], {i, 0, n + k}]]@ n, {n, 0, 19}] (* _Michael De Vlieger_, Jul 22 2017 *)

%o (PARI) \\ Dziemianczuk, Proposition 1

%o S(n,k)=sum(i=0,n+k,sum(j=0,i,binomial(k,j)*binomial(j,i-j)*binomial(2*k+n-i,k)));

%o vector(20,x,x--;S(x,x)) \\ _Lars Blomberg_, Jul 20 2017

%Y Leading column of array in A232973.

%K nonn

%O 0,2

%A _N. J. A. Sloane_, Dec 05 2013

%E a(8)-a(19) from _Lars Blomberg_, Jul 20 2017

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)