A129156 Number of primitive Dyck factors in all skew Dyck paths of semilength n.
0, 1, 3, 10, 36, 136, 532, 2139, 8796, 36859, 156946, 677514, 2959669, 13063493, 58184838, 261230814, 1181144792, 5374078726, 24588562675, 113067256235, 522270436044, 2422244159067, 11275548912967, 52663412854571
Offset: 0
Keywords
Examples
a(2)=3 because in all skew Dyck paths of semilength 3, namely (UD)(UD), (UUDD) and UUDL, we have altogether 3 primitive Dyck factors (shown between parentheses).
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- E. Deutsch, E. Munarini, S. Rinaldi, Skew Dyck paths, J. Stat. Plann. Infer. 140 (8) (2010) 2191-2203
Programs
-
Maple
G:=(3-3*z-sqrt(1-6*z+5*z^2))*(1-sqrt(1-4*z))/(1+z+sqrt(1-6*z+5*z^2))^2: Gser:=series(G,z=0,30): seq(coeff(Gser,z,n),n=0..27);
-
Mathematica
CoefficientList[Series[(3-3*x-Sqrt[1-6*x+5*x^2])*(1-Sqrt[1-4*x])/ (1+x+Sqrt[1-6*x+5*x^2])^2, {x, 0, 20}], x] (* Vaclav Kotesovec, Mar 20 2014 *)
-
PARI
z='z+O('z^25); concat([0], Vec((3-3*z-sqrt(1-6*z+5*z^2))*(1-sqrt(1-4*z))/(1 +z + sqrt(1 - 6*z + 5*z^2))^2)) \\ G. C. Greubel, Feb 09 2017
Formula
a(n) = Sum_{k=0,..,n} k*A129154(n,k).
G.f.: (3-3*z-sqrt(1-6*z+5*z^2))*(1-sqrt(1-4*z))/(1 +z + sqrt(1 - 6*z + 5*z^2))^2.
a(n) ~ (5-sqrt(5)) * 5^(n+3/2) / (36*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Mar 20 2014
Comments