OFFSET
0,11
REFERENCES
P. A. MacMahon, Memoir on symmetric functions of the roots of systems of equations, Phil. Trans. Royal Soc. London, 181 (1890), 481-536; Coll. Papers II, 32-87.
FORMULA
G.f.: Product_{ i=2..infinity, j=0..i} 1/(1-x^(i-j)*y^j).
EXAMPLE
Series ends ... + 2*x^5 + 3*x^4*y + 4*x^3*y^2 + 4*x^2*y^3 + 3*x*y^4 + 2*y^5 + 2*x^4 + 2*x^3*y + 3*x^2*y^2 + 2*x*y^3 + 2*y^4 + x^3 + x^2*y + x*y^2 + y^3 + x^2 + x*y + y^2 + 1.
1;
0, 0;
1, 1, 1;
1, 1, 1, 1;
2, 2, 3, 2, 2;
...
MAPLE
read transforms; t1 := mul( mul( 1/(1-x^(i-j)*y^j), j=0..i), i=2..11): SERIES2(t1, x, y, 7);
MATHEMATICA
max = 12; gf = Product[1/(1 - x^(i - j)*y^j), {i, 2, max}, {j, 0, i}]; se = Series[gf, {x, 0, max}, {y, 0, max}] // Normal; t[n_, k_] := SeriesCoefficient[se, {x, 0, n}, {y, 0, k}]; Flatten[ Table[ t[n - k, k], {n, 0, max}, {k, 0, n}]] (* Jean-François Alcover, after Maple *)
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Mar 22 2001
EXTENSIONS
More terms from Vladeta Jovovic, Mar 23 2001
Edited by Christian G. Bower, Jan 08 2004
STATUS
approved