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!)
A240008 Number of Dyck paths of semilength 2n such that the area between the x-axis and the path is 4n. 3

%I #16 Apr 02 2017 03:28:52

%S 1,1,3,14,65,301,1419,6786,32749,159108,777224,3813745,18783934,

%T 92811389,459832745,2283628771,11364500644,56659024320,282939657220,

%U 1414980598167,7085590965083,35523567248527,178289298823240,895697952270827,4503912366189604

%N Number of Dyck paths of semilength 2n such that the area between the x-axis and the path is 4n.

%H Alois P. Heinz, <a href="/A240008/b240008.txt">Table of n, a(n) for n = 0..500</a>

%F a(n) = A129182(2n,4n) = A239927(4n,2n).

%F a(n) ~ c * d^n / sqrt(n), where d = 5.134082940807122222912767966569622... and c = 0.198313337349936555418443931967... - _Vaclav Kotesovec_, Apr 01 2014

%p b:= proc(x, y, k) option remember;

%p `if`(y<0 or y>x or k<0 or k>x^2/2-(y-x)^2/4, 0,

%p `if`(x=0, 1, b(x-1, y-1, k-y+1/2) +b(x-1, y+1, k-y-1/2)))

%p end:

%p a:= n-> b(4*n, 0, 4*n):

%p seq(a(n), n=0..30);

%t b[x_, y_, k_] := b[x, y, k] = If[y<0 || y>x || k<0 || k>x^2/2-(y-x)^2/4, 0, If[x==0, 1, b[x-1, y-1, k-y+1/2] + b[x-1, y+1, k-y-1/2]]];

%t a[n_] := b[4n, 0, 4n];

%t Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Apr 01 2017, translated from Maple *)

%K nonn

%O 0,3

%A _Alois P. Heinz_, Mar 30 2014

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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)