A070914 Array read by antidiagonals giving number of paths up and left from (0,0) to (n,kn) where x/y <= k for all intermediate points.
1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 5, 1, 1, 1, 4, 12, 14, 1, 1, 1, 5, 22, 55, 42, 1, 1, 1, 6, 35, 140, 273, 132, 1, 1, 1, 7, 51, 285, 969, 1428, 429, 1, 1, 1, 8, 70, 506, 2530, 7084, 7752, 1430, 1, 1, 1, 9, 92, 819, 5481, 23751, 53820, 43263, 4862, 1, 1, 1, 10, 117, 1240
Offset: 0
Examples
Rows start: =========================================================== n\k| 0 1 2 3 4 5 6 ---|------------------------------------------------------- 0 | 1, 1, 1, 1, 1, 1, 1 ... 1 | 1, 1, 1, 1, 1, 1, 1 ... 2 | 1, 2, 3, 4, 5, 6, 7 ... 3 | 1, 5, 12, 22, 35, 51, 70 ... 4 | 1, 14, 55, 140, 285, 506, 819 ... 5 | 1, 42, 273, 969, 2530, 5481, 10472 ... 6 | 1, 132, 1428, 7084, 23751, 62832, 141778 ... 7 | 1, 429, 7752, 53820, 231880, 749398, 1997688 ... 8 | 1, 1430, 43263, 420732, 2330445, 9203634, 28989675 ... ...
Links
- Alois P. Heinz, Antidiagonals n = 0..140, flattened
- Malin Christensson, Make hyperbolic tilings of images, web page, 2019.
- Peter Hilton and Jean Pedersen, Catalan Numbers, Their Generalization, and Their Uses, The Mathematical Intelligencer, March 1991, Volume 13, Issue 2, pp. 64-75.
- V. E. Hoggatt, Jr. and M. Bicknell, Catalan and related sequences arising from inverses of Pascal's triangle matrices, Fib. Quart., 14 (1976), 395-405.
Crossrefs
Programs
-
Maple
A:= (n, k)-> binomial((k+1)*n, n)/(k*n+1): seq(seq(A(n, d-n), n=0..d), d=0..12); # Alois P. Heinz, Mar 25 2015
-
Mathematica
T[n_, k_] = Binomial[n(k+1), n]/(k*n+1); Flatten[Table[T[n-k, k], {n, 0, 9}, {k, n, 0, -1}]] (* Jean-François Alcover, Apr 08 2016 *)
-
PARI
T(n, k) = binomial(n*(k+1), n)/(n*k+1); \\ Andrew Howroyd, Nov 20 2017
Formula
T(n, k) = binomial(n*(k+1), n)/(n*k+1) = A071201(n, k*n) = A071201(n, k*n+1) = A071202(n, k*n+1) = A062993(n+k-1, k-1).
If P(k,x) = Sum_{n>=0} T(n,k)*x^n is the g.f. of column k (k>=0), then P(k,x) = exp(1/(k+1)*(Sum_{j>0} (1/j)*binomial((k+1)*j,j)*x^j)). - Werner Schulte, Oct 13 2015
Comments