A110438
Triangular array giving the number of NSEW unit step lattice paths of length n with terminal height k subject to the following restrictions. The paths start at the origin (0,0) and take unit steps (0,1)=N(north), (0,-1)=S(south), (1,0)=E(east) and (-1,0)=W(west) such that no paths pass below the x-axis, no paths begin with W, all W steps remain on the x-axis and there are no NS steps.
Original entry on oeis.org
1, 1, 1, 2, 2, 1, 5, 4, 3, 1, 12, 10, 7, 4, 1, 29, 25, 18, 11, 5, 1, 71, 62, 47, 30, 16, 6, 1, 175, 155, 121, 82, 47, 22, 7, 1, 434, 389, 311, 220, 135, 70, 29, 8, 1, 1082, 979, 799, 584, 378, 212, 100, 37, 9, 1, 2709, 2471, 2051, 1541, 1039, 620, 320, 138, 46, 10, 1
Offset: 0
Asamoah Nkwanta (Nkwanta(AT)jewel.morgan.edu), Aug 10 2005
Triangle starts:
1;
1,1;
2,2,1;
5,4,3,1;
12,10,7,4,1;
- A. Nkwanta, A Riordan matrix approach to unifying a selected class of combinatorial arrays, Congressus Numerantium, 160 (2003), pp. 33-55.
- A. Nkwanta, A note on Riordan matrices, Contemporary Mathematics Series, AMS, 252 (1999), pp. 99-107.
- A. Nkwanta, Lattice paths, generating functions and the Riordan group, Ph.D. Thesis, Howard University, Washington DC, 1997.
- Andrew Howroyd, Table of n, a(n) for n = 0..1325 (rows 0..50)
- Naiomi T. Cameron and Asamoah Nkwanta, On Some (Pseudo) Involutions in the Riordan Group, Journal of Integer Sequences, Vol. 8 (2005), Article 05.3.7.
- Tian-Xiao He, A-sequences, Z-sequence, and B-sequences of Riordan matrices, Discrete Mathematics 343.3 (2020): 111718.
-
A110438 := proc (n, k)
add((-1)^binomial(n-i+1, 2)*binomial(floor((1/2)*n+(1/2)*i), i)*add(binomial(i, j)*binomial(j, floor((1/2)*j-(1/2)*k)), j = k..i), i = 0..n);
end proc:
seq(seq(A110438(n, k), k = 0..n), n = 0..10); # Peter Bala, Jul 14 2021
-
\\ ColGf gives g.f. of k-th column.
ColGf(k,n)={my(g=(1 - x + x^2 - sqrt(1 - 2*x - x^2 - 2*x^3 + x^4 + O(x^(n-k+3))))/(2*x^2)); (1 - x)*g/(1 - x*g)*(x*g)^k}
T(n,k) = {polcoef(ColGf(k,n), n)} \\ Andrew Howroyd, Mar 02 2023
A191579
Triangular array related to continued fractions of square root of (N^2 - 1) for N>1, apparently containing A004148 and summing to A091964.
Original entry on oeis.org
1, 1, 1, 1, 2, 1, 2, 3, 3, 1, 4, 6, 6, 4, 1, 8, 13, 13, 10, 5, 1, 17, 28, 30, 24, 15, 6, 1, 37, 62, 69, 59, 40, 21, 7, 1, 82, 140, 160, 144, 105, 62, 28, 8, 1, 185, 320, 375, 350, 271, 174, 91, 36, 9, 1, 423, 740, 885, 852, 690, 474, 273, 128, 45, 10, 1
Offset: 1
The triangle begins
1;
1, 1;
1, 2, 1;
2, 3, 3, 1;
4, 6, 6, 4, 1;
8, 13, 13, 10, 5, 1;
17, 28, 30, 24, 15, 6, 1;
37, 62, 69, 59, 40, 21, 7, 1;
82, 140, 160, 144, 105, 62, 28, 8, 1;
185, 320, 375, 350, 271, 174, 91, 36, 9, 1;
423, 740, 885, 852, 690, 474, 273, 128, 45, 10, 1;
...
The 4th row is 2,3,3,1 because the 2nd,4th,6th and 8th terms of columns j = 1-5 of square array T(i,j) A192062 form the 4*5 matrix {{1,3,8,21},{1,4,15,56},{1,5,24,115},{1,6,35,204},{1,7,48,329}}. Solving the resulting system of linear equations results in the identities:
2*1 + 3*3 + 3*8 + 1*21 = 56 = T(8,2) of A192062
2*1 + 3*4 + 3*15+ 1*56 = 115 = T(8,3) of A192062
2*1 + 3*5 + 3*24 + 1*115 = 204 = T(8,4) of A192062
2*1 + 3*6 + 3*35 + 1*204 = 329 = T(8,5) of A192062
A205810
Irregular triangle read by rows: Whitney numbers c_{n,k} (n >= 0, 0 <= k <= 2n) of Lucas lattices.
Original entry on oeis.org
1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 3, 3, 4, 3, 3, 1, 1, 4, 6, 8, 9, 8, 6, 4, 1, 1, 5, 10, 15, 20, 21, 20, 15, 10, 5, 1, 1, 6, 15, 26, 39, 48, 52, 48, 39, 26, 15, 6, 1, 1, 7, 21, 42, 70, 98, 119, 127, 119, 98, 70, 42, 21, 7, 1
Offset: 0
Triangle begins:
1;
1, 1, 1;
1, 2, 1, 2, 1;
1, 3, 3, 4, 3, 3, 1;
1, 4, 6, 8, 9, 8, 6, 4, 1;
1, 5, 10, 15, 20, 21, 20, 15, 10, 5, 1;
1, 6, 15, 26, 39, 48, 52, 48, 39, 26, 15, 6, 1;
1, 7, 21, 42, 70, 98, 119, 127, 119, 98, 70, 42, 21, 7, 1;
...
-
c:= (n, k)-> `if`(k=2*n, 1, n*add(1/(n-i)*binomial(n-i, n-k+i)*binomial(k-i-1, i), i=0..floor(k/2))): seq(seq(c(n, k), k=0..2*n), n=0..8); # Leonid Bedratyuk, May 15 2018
-
T(n,k) = if (k==2*n, 1, n*sum(i=0, k\2, 1/(n-i)*binomial(n-i,n-k+i)*binomial(k-i-1,i)));
tabf(nn) = for (n=0, nn, for (k=0, 2*n, print1(T(n,k), ", ")); print); \\ Michel Marcus, May 16 2018
A110439
Triangular array formed by the odd-indexed Fibonacci numbers.
Original entry on oeis.org
1, 1, 1, 3, 2, 1, 8, 5, 3, 1, 21, 14, 8, 4, 1, 55, 38, 23, 12, 5, 1, 144, 102, 65, 36, 17, 6, 1, 377, 273, 180, 106, 54, 23, 7, 1, 987, 728, 494, 304, 166, 78, 30, 8, 1, 2584, 1936, 1346, 858, 494, 251, 109, 38, 9, 1
Offset: 0
Asamoah Nkwanta (nkwanta(AT)jewel.morgan.edu), Aug 09 2005
Triangle starts:
1;
1, 1;
3, 2, 1;
8, 5, 3, 1;
21, 14, 8, 4, 1;
- A. Nkwanta, A Riordan matrix approach to unifying a selected class of combinatorial arrays, Congressus Numerantium, 160 (2003), pp. 33-55.
- A. Nkwanta, A note on Riordan matrices, Contemporary Mathematics Series, AMS, 252 (1999), pp. 99-107.
- A. Nkwanta, Lattice paths, generating functions and the Riordan group, Ph.D. Thesis, Howard University, Washington DC 1997.
Showing 1-4 of 4 results.
Comments