Category Template: Need to display different content on first page of archives

get_query_var('paged') will show you pagination information. The code below will show only on first page of archive

if(get_query_var('paged') == 1){
    //run extra code    
}