Let $exp(k)$ be the exponential distribution, $k>0$. Then it has density
$$ f(x)= \begin{cases} ke^{-kx} & \text{ if } 0\leq x < \infty\\ 0 &\text{otherwise} \end{cases} $$
I want to find the convolution of $n$ exponential distributions. For $n=2$ I have
$$ \int_{\mathbb{R}} f(x-t)f(t) dt =\int_0^x (k e^{-k(x-t)}ke^{-kt}) dt=\int_0^x k^2e^{-kx} dt=k^2e^{-kx} \int_0^x dt= k^2xe^{-kx}. $$
For $n \geq 3$ I would like to take convolutions inductively, but I am not even sure what my inductive hypothesis would be. Some help?
For $n=2$, you found that $$f_2(x)=k^2x^{2-1}e^{-kx}$$ The tricky part is that actually there is also a hidden $1/(2-1)!=1$. (you couldn't have known that, unless you calculated also the $n=3$ case). So, the inductive hypothesis for $n\ge 3$: $$f_n(x)=\frac{1}{(n-1)!}k^{n}x^{n-1}e^{-kx}$$ for $0\le x<+\infty$ and $f_n(x)=0$ otherwise. This is the Erlang distribution (or a particular instance of the Gamma distribution) with parameters: shape $n$ and rate $k$.