Remove ID page from wp_count

This should work for you to exclude via ID:

//replace the 3,8 with your page ids
<?php  $args=array(
  'post__not_in' => array(3,8),
  'post_type' => 'page',
  'post_status' => 'publish',
); 
query_posts($args); ?>

If you want to exclude via page title you can do this

<?php $exclude1 = get_page_by_title('Sample Page Title'); ?>
<?php $exclude2 = get_page_by_title('Sample Page Title 2'); ?>
<?php $args = array(    
    'post_type' => 'page',
    'order'   => 'ASC',
    'post__not_in' => array($exclude1->ID,$exclude2->ID)
    );
    query_posts($args);  ?>