In this
answer to Is there any valid complex or just real solution to $\sin(x)^{\cos(x)} = 2$?,
one must calculate $$\frac{d^{n-1}}{dw^{n-1}}\left.\frac{4^{-\frac{n}{\sqrt w}}}{\sqrt w}\right|_1=\sum_{m=0}^\infty\frac{\Gamma\left(\frac12-\frac m2\right)(-\ln(4)n)^m}{\Gamma\left(\frac32-n-\frac m2\right)m!}=\text H^{1,1}_{1,2}\left(^{\left(\frac12,-\frac12\right)}_{(0,1),\left(n-\frac12,-\frac12\right)};\ln(4)n\right)=\frac1{\sqrt\pi}\text G^{3,0}_{1,3}\left(^{\frac32-n}_{0,\frac12,\frac12};(\ln(2)n)^2\right)\tag1$$
where one can convert Fox H into Meijer G functions using the Wolfram repository function FoxHToMeijerG. @Mariusz Iwaniuk simplified it further using Maple:
$$\frac{d^{n-1}}{dw^{n-1}}\left.\frac{4^{-\frac{n}{\sqrt w}}}{\sqrt w}\right|_1 = \frac1{\sqrt\pi}\text G^{3,0}_{1,3}\left(^{\frac32-n}_{0,\frac12,\frac12};(\ln(2)n)^2\right) \\ =\frac{\sqrt\pi}{\Gamma\left(\frac32-n\right)}\,_1\text F_2\left(n-\frac12;\frac12,\frac12;(\ln(2)n)^2\right)\\ +\ln(4)(-1)^n n!\,_1\text F_2\left(n;1,\frac32;(\ln(2)n)^2\right)\tag2$$
which was tested and it matches the derivatives.
However, there is seemingly no other way to find this result. MeijerGToHypergeometricPFQ did not work. Also, there is a formula for converting $\text G^{3,0}_{1,3}\left(^{\ \ \ \ \ a_1}_{b_1,b_2,b_3};z\right)$ into a sum of $_1\text F_2$ functions, but part of it involves $\csc(\pi (b_2-b_3))$ which is undefined if $b_3=b_2$, like in $(1)$, so $\lim\limits_{b_2\to\frac12}$ must be taken. This problem occurs in other cases where $b_{m+1}=b_{m+j}$, so understanding how to reduce Meijer G in these cases helps.
Is there any way to find $(2)$ without using Maple, like maybe with a Wolfram function or a reduction formula?
Integrate[ E^-x (Hypergeometric1F1[-(1/2) + n, 1/2, -((n^2 Log[2]^2)/x)]/( Sqrt[x] Gamma[3/2 - n]) - ( n Hypergeometric1F1[n, 3/2, -((n^2 Log[2]^2)/x)] Log[4])/( x Gamma[1 - n])), {x, 0, Infinity}, Assumptions -> n > 0] // Expandshould work on Wolfram cloud. – Mariusz Iwaniuk Mar 31 '24 at 17:23