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!)
A289480 Number of Dyck paths of semilength 10*n and height n. 2
1, 1, 524287, 956185155129, 2011805242484811913, 3913893675608035491579363, 6753921048102794214403632812402, 10404372657815158859307324171401493273, 14572291057533118353907127088834174993619633, 18906515358804836479733610566557899759396278209535 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
In general, column k>1 of A289481 is asymptotic to 2^(2*k*n + 3) * k^(2*k*n + 1/2) / ((k-1)^((k-1)*n + 1/2) * (k+1)^((k+1)*n + 7/2) * sqrt(Pi*n)). - Vaclav Kotesovec, Jul 14 2017
LINKS
FORMULA
a(n) ~ 2^(40*n + 7/2) * 5^(20*n + 1/2) / (3^(18*n + 1) * 11^(11*n + 7/2) * sqrt(Pi*n)). - Vaclav Kotesovec, Jul 14 2017
MAPLE
b:= proc(x, y, k) option remember;
`if`(x=0, 1, `if`(y>0, b(x-1, y-1, k), 0)+
`if`(y < min(x-1, k), b(x-1, y+1, k), 0))
end:
a:= n-> `if`(n=0, 1, b(20*n, 0, n)-b(20*n, 0, n-1)):
seq(a(n), n=0..20);
MATHEMATICA
b[x_, y_, k_]:=b[x, y, k]=If[x==0, 1, If[y>0, b[x - 1, y - 1, k], 0] + If[y<Min[x - 1, k], b[x - 1, y + 1, k], 0]]; a[n_]:=a[n]=If[n==0, 1, b[20n, 0, n] - b[20n, 0, n - 1]]; Table[a[n], {n, 0, 20}] (* Indranil Ghosh, Jul 08 2017 *)
CROSSREFS
Column k=10 of A289481.
Sequence in context: A011569 A022535 A069394 * A222530 A069280 A017702
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 06 2017
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)