pagination with sticky posts

I’d suggest using two queries, one for sticky posts, another for all the others.

First:

query_posts(array('post__in' => get_option('sticky_posts'), posts_per_page => 1));

then query all the other posts

query_posts( array( 'post__not_in' => get_option( 'sticky_posts' ), posts_per_page => 7, orderby => date, paged => '.$page_to_load.'));

this should do it.