Single Featured Image Repeating

This is wrong

<?php if ( have_posts() ) {
                    while ( have_posts() ) {
                        if ( has_post_thumbnail() ) {
                            echo "<div id='post_thumbnail'>";
                                the_post_thumbnail();
                                echo '<h4>' . get_post(get_post_thumbnail_id())->post_excerpt . '</h4>';
                            echo "</div>";
                        }
                        the_post();

You are calling your thumbnail before the_post(). Just move the_post() to before if ( has_post_thumbnail() ) {