I have no doubt there are better ways of doing this, but I think the following will give you what you want.
Export["text1.txt",
StringJoin[ToString[#[[1]]], "\t", ToString[#[[2]]], "\r"] & /@
t, "Text"]
It will create a text file containing all the number pairs, separated by a tab, and with each line ended by a return.