Consider following simple example:
In[1]:= MapThread[f[#1, #2] &, {{a, b, c}, {1, 2, 3}}]
Out[1]= {f[a, 1], f[b, 2], f[c, 3]}
Using above idea we can construct
In[2]:= MapThread[
Integrate[#1 x^2, {x, 1, #2}] &,
{
{1, 2, 3, 4, 5, 6},
{6, 5, 4, 3, 2, 1}
}
]
Out[2]= {215/3, 248/3, 63, 104/3, 35/3, 0}