This is a detail question from my current main question , but came out as a standalone problem. Background: I've found a description for the matrix T but to have this practically usable I need a solution to the following problem:
Consider the sequence of products
$\small \qquad \qquad \begin{array} {lll} 1, \\ (x-1),\\ (x-1)(x-1/2),\\ (x-1)(x-1/2)(x-1/3), \\ \ldots \end{array}$
Now my question is to find efficiently the sequence of the coefficients $\small c_{k,p} $ at the same (say the $p$th) powers of $x$ so that I can generate the powerseries $\small f(t,p)=\sum_{k=0}^\infty c_{k,p} t^k $
For instance if p=0 this is simple: $\small f(t,0)= \sum_{k=0}^\infty (-1)^k/k! \cdot t^k$ where the coefficients occur by $1, -1, (-1)(-1/2) , (-1)(-1/2)(-1/3),\ldots$
So: what is some efficient way to find the coefficients for f(t,p) with some fixed $p$? Some compositions of binomial-coefficients, factorials?
I'm also fine with a recursive expression which provides the coefficients sequentially with increasing powers, like $\small c_{k+1,p} = \langle \text{something}\rangle c_{k,p}$ or similar (I have some fully recursive description which needs all earlier coefficients with $p-1,p-2,\ldots$ but I want an expression which is "standalone" for a selected $p$.)
[added] I should add, that I know some composition using the Stirling numbers first kind and factorials. However, I need the coefficients up to an index up to (sometimes) a couple of hundreds for approximate testing of a family of functions whose formal powerseries are also composed of this coefficients (cofactored according the matrix-product in my main question). As long as I do not know a non-recursive and relatively simple formula for that Stirling numbers, a description of the coefficients in terms of Stirling-numbers is not of much help. (However, this might in turn indicate, that a simpler formula for my coefficients could not be available at all - of what I'm getting aware as I'm writing this now...)
[update]
For a crosscheck consider the following table.
The columns contain the coefficients of some product, for instance the column with index $c=4$ has $\small (1/24,-5/12,35/24,-25/12,1) $ because of the expansion of $\small (x-1)(x-1/2)(x-1/3)(x-1/4) $ into $\small 1/24-5/12 x+35/24 x^2-25/12 x^3+1 x^4 $
The $p$th row (index begins at $p=0$) shows the sought coefficients for my power series for $\small f(t,p)$:
$\qquad \small
\begin{array} {rrrrrrr}
1 & -1 & 1/2 & -1/6 & 1/24 & -1/120 & 1/720 & -1/5040 \\
. & 1 & -3/2 & 1 & -5/12 & 1/8 & -7/240 & 1/180 \\
. & . & 1 & -11/6 & 35/24 & -17/24 & 35/144 & -23/360 \\
. & . & . & 1 & -25/12 & 15/8 & -49/48 & 7/18 \\
. & . & . & . & 1 & -137/60 & 203/90 & -967/720 \\
. & . & . & . & . & 1 & -49/20 & 469/180 \\
. & . & . & . & . & . & 1 & -363/140 \\
. & . & . & . & . & . & . & 1
\end{array} $
for instance $\small f(t,2)= 1 t^2 - 11/6 t^3 + 35/24 t^4 - \ldots + \ldots $