Let w =f(z) = sum of z^(k+a) / (k + a)
where k= 0 to infinity and a is a nonzero parameter.
I need to find the inverse of this series, z = g(w). The powseries examples in Maple Help don't help. They don't work on my example, with a symbolic variable, a, stuck in there. I hope that if I see about 7 or 8 terms of the inversion, I will get the general pattern. I have tried to compute the inverse directly from the Lagrange Inversion Formula, but the complexity always grows too quickly for me to complete the solution, no matter which shortcut I try to take.
inversion
> S := series(R, w, 4);
This result has the order-0 term RootOf(LerchPhi(_Z,1,a)). I would guess, however, that (if a > 0) you would want the order-0 term to be 0,
and to get a series in powers of w^(1/a). Let's call that s, and write the equation as
> eq := z * LerchPhi(z,1,a)^(1/a) = s;
> series(solve(eq,z), s, 8);
LerchPhi
Wow! I had never heard of the LerchPhi function before. I knew in my heart that SOMEBODY must have given this function a special name. Thank you.