Can index.php take over for front-page.php in template hierarchy on second page?

Pagination does not affect the template usually, paged.php is the exception but not of interest for your question.

To style the first page differently than later pages check for

if ( is_front_page() and 1 < get_query_var( 'paged' ) ) 
{ 
    // code for later pages
}