A206474
Riordan array ((1+x-x^2)/(1-x^2), x/(1-x^2)).
Original entry on oeis.org
1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 2, 2, 1, 1, 1, 1, 3, 3, 1, 1, 0, 3, 3, 4, 4, 1, 1, 1, 1, 6, 6, 5, 5, 1, 1, 0, 4, 4, 10, 10, 6, 6, 1, 1, 1, 1, 10, 10, 15, 15, 7, 7, 1, 1, 0, 5, 5, 20, 20, 21, 21, 8, 8, 1, 1, 1, 1, 15, 15, 35, 35, 28, 28, 9, 9, 1, 1
Offset: 0
Triangle begins :
1
1, 1
0, 1, 1
1, 1, 1, 1
0, 2, 2, 1, 1
1, 1, 3, 3, 1, 1
0, 3, 3, 4, 4, 1, 1
1, 1, 6, 6, 5, 5, 1, 1
0, 4, 4, 10, 10, 6, 6, 1, 1
1, 1, 10, 10, 15, 15, 7, 7, 1, 1
0, 5, 5, 20, 20, 21, 21, 8, 8, 1, 1
1, 1, 15, 15, 35, 35, 28, 28, 9, 9, 1, 1
-
t[1, 0] = 1; t[2, 0] = 0; t[n_, n_] = 1; t[n_ /; n >= 0, k_ /; k >= 0] /; k <= n := t[n, k] = t[n-1, k-1] + t[n-2, k]; t[n_, k_] = 0; Table[t[n, k], {n, 0, 11}, {k, 0, n}] // Flatten (* Jean-François Alcover, Nov 28 2013 *)
A236376
Riordan array ((1-x+x^2)/(1-x)^2, x/(1-x)^2).
Original entry on oeis.org
1, 1, 1, 2, 3, 1, 3, 7, 5, 1, 4, 14, 16, 7, 1, 5, 25, 41, 29, 9, 1, 6, 41, 91, 92, 46, 11, 1, 7, 63, 182, 246, 175, 67, 13, 1, 8, 92, 336, 582, 550, 298, 92, 15, 1, 9, 129, 582, 1254, 1507, 1079, 469, 121, 17, 1, 10, 175, 957, 2508, 3718, 3367, 1925, 696, 154
Offset: 0
Triangle begins:
1;
1, 1;
2, 3, 1;
3, 7, 5, 1;
4, 14, 16, 7, 1;
5, 25, 41, 29, 9, 1;
6, 41, 91, 92, 46, 11, 1;
7, 63, 182, 246, 175, 67, 13, 1;
-
# The function RiordanSquare is defined in A321620.
RiordanSquare(1+x/(1-x)^2, 8); # Peter Luschny, Mar 06 2022
-
CoefficientList[#, y] & /@
CoefficientList[
Series[(1 - x + x^2)/(1 - 2*x - x*y + x^2), {x, 0, 12}], x] (* Wouter Meeussen, Jan 25 2014 *)
A115980
Array read by rows distributing the values of A000712 (vertically) and A001519 (horizontally).
Original entry on oeis.org
1, 2, 2, 3, 2, 4, 4, 3, 2, 4, 6, 5, 4, 6, 2, 4, 6, 8, 6, 3, 4, 4, 8, 9, 2, 4, 6, 8, 10, 7, 4, 12, 8, 4, 8, 12, 12, 2, 4, 6, 8, 10, 12, 8, 3, 6, 5, 4, 14, 21, 12, 4, 8, 12, 16, 15, 2, 4, 6, 8, 10, 12, 14, 9
Offset: 0
The array begins:
1
..2
....2
....3
......2
......4..3
......4
.........2
.........4..4..3
.........6..6..4
.........5
with column sums beginning 1 2 5 10 20 ...A000712 related to A000041
and sums over each template beginning 1 2 5 13 34 ...A001519 related to A000045
Comments