Using the following code to get oldstyle (arabic) numbers in the headings make the preamble page numbers (in roman) to disappear. Here's a minimal working example:
\documentclass{book}
\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{lipsum}
\usepackage{multicol}
\usepackage{textcomp}
\usepackage{pdfpages}
\pagestyle{fancy}
\fancyhead[LE]{\oldstylenums{\thepage}}
\fancyhead[RO]{\oldstylenums{\thepage}}
\begin{document}
\frontmatter
\lipsum
\mainmatter
\lipsum
\end{document}
As you can see, in the frontmatter, there is no pagination on the headings (although there's still pagination at the bottom). Thanks.