You shouldn't feed a date string into the second argument for date(), it should be an integer containing the Unix timestamp (the value returned from mktime()). See the date() documentation.
$date = mktime(0, 0, 0, 9, 16, 2011);
var_dump(date('N', $date)); // string(1) "5"
With your original code:
$date = date( "Y-m-d H:i:s", mktime(0, 0, 0, 9, 16, 2011) );
print_r(date('N', $date));
The value of $date is "2011-09-16 00:00:00". This is not an integer, and certainly not the Unix timestamp for that date/time; because of that, date() cannot work with the value and reverts back to using the Unix epoch (0 timestamp) which is 1 Jan 1970. Also, an E_NOTICE message stating "A non well formed numeric value encountered in [file] on line [line]" is issued.