import re

text = "15159970 (30.12.2015), 15615115 (01.01.1970), 11224455, 55441123 (28.11.2014 12:43:14)"

print( list(filter(None, re.findall(r'\([^()]+\)|(\d+)', text))) )