All your examples (including 9/17/09 - 7/24/09) show eight-day periods...
For one-week periods, again using A17 as the start date, use this formula in A1 and then just copy it across the next 25 columns:
=TEXT($A$17+ 7*(COLUMN()-COLUMN($A1)),"m/d/yyyy")&" - "&TEXT($A$17-1+7*(COLUMN()-COLUMN($A1)+1),"m/d/yyyy")
If you start in some cell other than A1, change the $A1 reference to that of the starting cell.