[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A145153
Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where sequence a_k of column k is the expansion of x/((1 - x - x^4)*(1 - x)^(k - 1)).
28
0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 2, 1, 0, 0, 1, 3, 3, 1, 1, 0, 1, 4, 6, 4, 2, 1, 0, 1, 5, 10, 10, 6, 3, 1, 0, 1, 6, 15, 20, 16, 9, 4, 1, 0, 1, 7, 21, 35, 36, 25, 13, 5, 2, 0, 1, 8, 28, 56, 71, 61, 38, 18, 7, 3, 0, 1, 9, 36, 84, 127, 132, 99, 56, 25, 10, 4, 0, 1, 10, 45, 120, 211, 259, 231, 155, 81, 35, 14, 5
OFFSET
0,13
COMMENTS
Each row sequence a_n (for n > 0) is produced by a polynomial of degree n-1, whose (rational) coefficients are given in row n of A145140/A145141. The coefficients *(n-1)! are given in A145142.
Each column sequence a_k is produced by a recursion, whose coefficients are given by row k of A145152.
LINKS
FORMULA
G.f. of column k: x/((1-x-x^4)*(1-x)^(k-1)).
EXAMPLE
Square array A(n,k) begins:
0, 0, 0, 0, 0, 0, 0, ...
1, 1, 1, 1, 1, 1, 1, ...
0, 1, 2, 3, 4, 5, 6, ...
0, 1, 3, 6, 10, 15, 21, ...
0, 1, 4, 10, 20, 35, 56, ...
1, 2, 6, 16, 36, 71, 127, ...
MAPLE
A:= proc(n, k) coeftayl (x/ (1-x-x^4)/ (1-x)^(k-1), x=0, n) end:
seq(seq(A(n, d-n), n=0..d), d=0..13);
MATHEMATICA
a[n_, k_] := SeriesCoefficient[x/(1 - x - x^4)/(1 - x)^(k - 1), {x, 0, n}]; Table[a[n - k, k], {n, 0, 12}, {k, n, 0, -1}] // Flatten (* Jean-François Alcover, Dec 05 2013 *)
CROSSREFS
Columns 0-9 give: A017898(n-1) for n>0, A003269, A098578, A145131, A145132, A145133, A145134, A145135, A145136, A145137.
Main diagonal gives: A145138.
Antidiaginal sums give: A145139.
Numerators/denominators of polynomials for rows give: A145140/A145141.
Sequence in context: A159854 A127840 A017837 * A255517 A188816 A168312
KEYWORD
nonn,tabl
AUTHOR
Alois P. Heinz, Oct 03 2008
STATUS
approved