How to set wp_options in functions.php for removeing the Default Front Page

You can use following:

update_option( 'show_on_front', 'page' );
update_option( 'page_on_front', '0' );

I hope this helps.