OFFSET
0,2
COMMENTS
The other diagonal coefficients are zero.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..200
FORMULA
a(n) = (11*n)! / ((2*n)! * (3*n)! * (6*n)!). - Vaclav Kotesovec, Oct 28 2020
MAPLE
a:= proc(n) local h; 1/(1-x-y^2-z^3); for h in [x, y, z]
do coeff(series(%, h, 1+6*n), h, 6*n) od
end:
seq(a(n), n=0..10); # Alois P. Heinz, Oct 23 2020
MATHEMATICA
nmax = 10; Flatten[{1, Table[Coefficient[Series[1/(1 - x - y^2 - z^3), {x, 0, 6*n}, {y, 0, 6*n}, {z, 0, 6*n}], x^(6*n)*y^(6*n)*z^(6*n)], {n, 1, nmax}]}] (* Vaclav Kotesovec, Oct 23 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 22 2020
EXTENSIONS
More terms from Alois P. Heinz, Oct 23 2020
STATUS
approved