Consider the functions for $n = 1, 2, 3$ $$ f_{n}(t,x) := \frac{e^{i t}\mathrm{Ei}\big(- i [t+x]\big)}{t^{n}} \ , $$ where $\mathrm{Ei}$ is the exponential integral function defined for complex $z \notin ( - \infty, 0]$ as $$ \mathrm{Ei}(z) = -\int_{-z}^{\infty} dq \; \frac{e^{-q}}{q} $$
Question: Is there a way to write down the $t$-anti-derivative for $f_{1,2,3}$? ie. what is the anti-derivative $\int dt \; e^{i t}\mathrm{Ei}\big(- i [t+x]\big)\; t^{-n}$ for $n=1,2,3$?
Mathematica doesn't know this one. Gradshteyn and Ryzhik do not have this anti-derivative either. My guess is that it involves a polylogarithm (since I am nesting integrals divided by $1/t$ in the above), but I cannot figure this out.
EDIT: Assume furthermore that $x>0$.
You can expand as a series:
$$\int e^{it} t^{-n} \text{Ei}(-i(t+k))dt=\gamma\int e^{it}t^{-n}dt+\sum_{k=1}^\infty\sum_{m=0}^\infty\frac{(-i)^ki^m}{kk!m!}x^k\left(-x^{-1}\right)^{m-n+1}\text B_{-\frac tx}(m-n+1,k+1)$$
work in progress
using an expansion for $\text{Ei}(x)$ and the Incomplete Beta function. The Beta function will not have negative arguments if $n>0$, so there should be no convergence problems.
Attempt $2$ with the En function:
Integration by parts:
$$\int t^{-n} e^{it}\text{Ei}(-i(t+x))dt= e^{it}t^{-n} \frac{e^{-i(t+x)}}{t+x}+\int \frac{e^{i(t+x)}}{t+x} t^{1-n}\text E_n(-i t) dt= t^{-n} \frac{e^{-ix}}{t+x}-e^{ix}\int \frac{e^{it}}{t+x} t^{1-n}\text E_n(-i t) dt$$
Using a geometric series for $|t|<|x|>0$ assuming the interchanging of sum and integral:
$$t^{-n} \frac{e^{-ix}}{t+x}+e^{ix}\int \frac{e^{it}}{t+x} t^{1-n}\text E_n(-i t) dt = t^{-n} \frac{e^{-ix}}{t+x}+e^{ix}\int\left(\sum_{k=0}^\infty (-1)^k x^{-k-1} t^k\right)t^{1-n}\text E_n(-i t) \left(\sum_{m=0}^\infty \frac{(it)^m}{m!}\right)dt = t^{-n} \frac{e^{-ix}}{t+x}+e^{ix}\int \sum_{m,k\ge0}\frac{i^m (-1)^k x^{-k-1}}{m!}t^{1-n+k+m}\text E_n(-it)dt$$
Integration using this power En integral identity:
$$t^{-n} \frac{e^{-ix}}{t+x}+e^{ix}\int \sum_{m,k\ge0}\frac{i^m (-1)^k x^{-k-1}}{m!}t^{1-n+k+m}\text E_n(-it)dt= c+t^{-n} \frac{e^{-ix}}{t+x}+e^{ix}\sum_{m,k\ge0}\frac{i^m (-1)^k x^{-k-1}}{m!}\left(t^{k+m-n+2}\frac{\text E_n(-i t)-\text E_{n-k-m-1}(- i t)}{k+m+1}\right)$$
This solution should have no undefined values within the restrictions. Please correct me and give me feedback!