[go: up one dir, main page]

login
A201075
Irregular triangle read by rows: number of Schroeder paths of length n and weighted area n^2-k.
3
1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 3, 4, 3, 3, 3, 1, 1, 1, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 10, 7, 6, 4, 1, 1, 1, 1, 2, 3, 4, 5, 7, 10, 13, 14, 17, 22, 25, 27, 31, 34, 34, 33, 31, 28, 21, 14, 10, 5, 1, 1, 1, 1, 2, 3, 4, 5, 7, 10, 13, 16, 21, 26, 31, 37, 45, 54
OFFSET
0,7
COMMENTS
0 <= k <= n^2.
LINKS
Brian Drake, Limits of areas under lattice paths, Discrete Math. 309 (2009), no. 12, 3936-3953.
EXAMPLE
Triangle begins:
1
1 1
1 1 1 2 1
1 1 1 2 3 4 3 3 3 1
1 1 1 2 3 4 5 7 8 9 10 11 10 7 6 4 1
...
MATHEMATICA
gf = Expand /@ FixedPoint[1 + x # (1 + q Normal@# /. {x :> q^2 x}) + O[x]^7 &, 0];
Flatten[Reverse[CoefficientList[#, q]] & /@ CoefficientList[gf, x]] (* Andrey Zabolotskiy, Jan 03 2024 *)
CROSSREFS
Mirror image of A129179.
Sequence in context: A063746 A293429 A367313 * A131338 A369995 A242784
KEYWORD
nonn,tabf
AUTHOR
N. J. A. Sloane, Nov 26 2011
EXTENSIONS
More terms from Andrey Zabolotskiy, Jan 03 2024
STATUS
approved