I want to indent the title block of my chapter heading. The code below is almost exactly how I want chapter titles displayed except for the fact that the second line and onward of the chapter title are aligned with the chapter number. How do I do this?
\documentclass{report}
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\Huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Large \thechapter\ \quad}
\begin{document}
\tableofcontents
\chapter{Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction Introduction }
\section{Motivation}
\end{document}

