OFFSET
0,2
LINKS
Gheorghe Coserea and Vaclav Kotesovec, Table of n, a(n) for n = 0..134 (terms 0..55 from Gheorghe Coserea)
A. Bostan, S. Boukraa, J.-M. Maillard, J.-A. Weil, Diagonals of rational functions and selected differential Galois groups, arXiv preprint arXiv:1507.03227 [math-ph], 2015.
Jacques-Arthur Weil, Supplementary Material for the Paper "Diagonals of rational functions and selected differential Galois groups"
S. Boukraa, S. Hassani, J-M. Maillard and J-A. Weil, Differential algebra on lattice Green functions and Calabi-Yau operators (unabridged version), arXiv:1311.2470 [math-ph], 2013.
FORMULA
a(n) = [(xyz)^n] 1/(1-3*x-5*y-7*z+x*y+2*y*z^2+3*x^2*z^2).
a(n) ~ c*d^n/n, where d = 2768.26905153125473648033608782909246512063674470098..., c = 0.275933667674847170980793689... . - Vaclav Kotesovec, Aug 03 2016
MAPLE
a:=proc(n) 1/(1-3*x-5*y-7*z+x*y+2*y*z^2+3*x^2*z^2); coeftayl(%, x=0, n); coeftayl(%, y=0, n); coeftayl(%, z=0, n); end proc: seq(a(n), n=0..20); # Vaclav Kotesovec, Aug 03 2016
MATHEMATICA
m = 12;
s = Series[1/(1 - 3 x - 5 y - 7 z + x y + 2 y z^2 + 3 x^2 z^2), {x, 0, m}, {y, 0, m}, {z, 0, m}] // Normal // Expand;
Join[{1}, Table[Coefficient[s, (x y z)^n], {n, 1, m}]] (* Jean-François Alcover, Jul 26 2016 *)
PROG
(PARI)
my(x='x, y='y, z='z);
R = 1/(1-3*x-5*y-7*z+x*y+2*y*z^2+3*x^2*z^2);
diag(n, expr, var) = {
my(a = vector(n));
for (i = 1, #var, expr = taylor(expr, var[#var - i + 1], n));
for (k = 1, n, a[k] = expr;
for (i = 1, #var, a[k] = polcoeff(a[k], k-1)));
return(a);
};
diag(12, R, [x, y, z])
CROSSREFS
KEYWORD
nonn
AUTHOR
Gheorghe Coserea, Jul 19 2016
STATUS
approved