I have a function $g(x,y)$ that contains a product of hypergeometric functions, both involving the variables $x$ and $y$. I try to do a series expansion in the two variables as recommended in this answer, however one of the two hypergeometrics does not get expanded. What can I do to avoid that?
The code:
g = (8 (1 + 2 s) (t x - I t y)^(2 + s) (t x + I t y) Hypergeometric2F1[1/2, -1 - s, -(1/2) - s, (t x + I t y)/(t x - I t y)] Hypergeometric2F1[1/2, 3 + s,7/2 + s, (t x - I t y) (t x + I t y)])/(1 + s);
Normal[Series[g, {t, 0, 6}]] /. t -> 1
(set $t$ to $1$ in order to retrieve the original function $g(x,y)$)

Limit[Hypergeometric2F1[ 1/2, -1 - s, -(1/2) - s, (t x + I t y)/(t x - I t y)], {x, y} -> {0, 0}]– Carl Woll Sep 16 '20 at 16:04