I noticed that half the posts on page 2 of the blog list are repeats. If this is WordPress, you can add offset to your args for more control over that.
$args = array(
'post_type' => 'post',
'post_status' => array( 'publish' ),
'orderby' => 'date',
'order' => 'DESC',
'offset' => 18
);