Here are some options, including the addition of \displaystyle to stretch out the cases vertically:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\left\{
\begin{array}{ l l }
U_1(x) = \sum_{|n| \leq N}A_n e^{i\alpha_n x} + \sum^2_{l=1}a_l \frac{x^l}{l!} \\
U'_1(x) = \sum_{|n| \leq N}A_n i\alpha_n e^{i\alpha_n x} + \sum^2_{l=1}a_l \frac{x^{l - 1}}{(l - 1)!}
\end{array}
\right. \text{where $\alpha_n = 2n\pi$}
\end{equation}
\begin{equation}
\left\{\setlength{\arraycolsep}{0pt}
\begin{array}{ r l @{\quad} l }
U_1(x) &{}= \sum_{|n| \leq N}A_n e^{i\alpha_n x} + \sum^2_{l=1}a_l \frac{x^l}{l!} \\[2\jot]
U'_1(x) &{}= \sum_{|n| \leq N}A_n i\alpha_n e^{i\alpha_n x} + \sum^2_{l=1}a_l \frac{x^{l - 1}}{(l - 1)!}
\end{array}
\right. \text{where $\alpha_n = 2n\pi$}
\end{equation}
\begin{equation}
\left\{\setlength{\arraycolsep}{0pt}
\begin{array}{ r l @{\quad} l }
U_1(x) &{}= \displaystyle\sum_{|n| \leq N}A_n e^{i\alpha_n x} + \sum^2_{l=1}a_l \frac{x^l}{l!} \\[\jot]
U'_1(x) &{}= \displaystyle\sum_{|n| \leq N}A_n i\alpha_n e^{i\alpha_n x} + \sum^2_{l=1}a_l \frac{x^{l - 1}}{(l - 1)!}
\end{array}
\right. \text{where $\alpha_n = 2n\pi$}
\end{equation}
\end{document}
Ultimately, since you're using an array to set the cases, you can adjust the vertical spacing using methods from Column and row padding in tables.
casesenvironment? – Bort Oct 22 '16 at 20:21$\alpha_{n}$ = 2n$\pi{}$should read$\alpha_{n} = 2n\pi$. You shouldn't hop in and out of math mode around the=and I believe the way you had it would have2nin typewriter text. If you really want that, it would probably be better style to use\mathtt{}within math mode. – Au101 Oct 22 '16 at 20:25{}after commands by using a space instead, this will not affect the output – Au101 Oct 22 '16 at 20:25