login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A086629 Symmetric square table of coefficients, read by antidiagonals, where T(n,k) is the coefficient of x^n*y^k in f(x,y) that satisfies f(x,y) = 1/[(1-x)(1-y)] + xy*f(x,y)^3. 2
1, 1, 1, 1, 2, 1, 1, 4, 4, 1, 1, 7, 13, 7, 1, 1, 11, 34, 34, 11, 1, 1, 16, 76, 124, 76, 16, 1, 1, 22, 151, 370, 370, 151, 22, 1, 1, 29, 274, 952, 1419, 952, 274, 29, 1, 1, 37, 463, 2185, 4573, 4573, 2185, 463, 37, 1, 1, 46, 739, 4579, 12892, 18037, 12892, 4579, 739, 46, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
If 1 is subtracted from every element of the table, the resulting table forms the coefficients of f(x,y)^3, where f(x,y) = 1/[(1-x)(1-y)] + xy*f(x,y)^3.
LINKS
MATHEMATICA
m = 11; f[_, _] = 0;
Do[f[x_, y_] = 1/((1 - x)(1 - y)) + x y f[x, y]^3 + O[x]^m, {m}];
T =CoefficientList[# + O[y]^m, y]& /@ CoefficientList[f[x, y], x];
Table[T[[n-k+1, k]], {n, 1, m}, {k, 1, n}] // Flatten (* Jean-François Alcover, Nov 15 2019 *)
CROSSREFS
Cf. A086630 (diagonal), A086631 (antidiagonal sums).
Sequence in context: A295213 A118245 A104382 * A203948 A296990 A156184
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Jul 27 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)