The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A071799 Number of lattice paths in the lattice [0..2n] X [0..2n] which do not pass through the point (n,n). 0
2, 34, 524, 7970, 121252, 1850380, 28337976, 435443490, 6711230900, 103711749284, 1606464657096, 24935144010764, 387746052588104, 6039349005200440, 94203136553911024, 1471326505700038434, 23007323485217888340, 360154459563530689204, 5643332975601670914600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Lattice Path
FORMULA
a(n) = binomial(4n, 2n) - binomial(2n, n)^2.
Also, a(n) = 2*Sum_{k=0..n-1} binomial(2n,k)^2. [Dennis P. Walsh, Mar 23 2012]
MAPLE
seq(2*sum(binomial(2*n, k)^2, k=0..(n-1)), n=1..20); # Dennis P. Walsh, Mar 23 2012
MATHEMATICA
Table[Binomial[4n, 2n] - Binomial[2n, n]^2, {n, 1, 20}]
CROSSREFS
Sequence in context: A005261 A104898 A218432 * A273052 A098704 A119298
KEYWORD
easy,nice,nonn
AUTHOR
T. D. Noe, Jun 06 2002
STATUS
approved

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 June 7 00:43 EDT 2024. Contains 373140 sequences. (Running on oeis4.)