SAS, 7582 75 69
data; file stdout; do while(1)a:; put "4 8 15 16 23 42"; a=sleep(6300,1); end;goto a; run; Not a typical golfing language, but I think it qualifies for this challenge, assuming that file stdout was valid in 1977-era SAS.
Improvements:
data _null_;-->data;saves 7 characters (and now produces an empty dataset as well as printing to stdout).- Replaced do-while loop with goto - saves 6 characters