Querying posts only if the current page is not paged?

The current page number is available in a global variable $paged.

if ( ! isset ( $GLOBALS['paged'] ) or ( $GLOBALS['paged'] < 2 ) )
{
    // run your code
}