Что выведет код?

c = filter(lambda x: x>=3, map(lambda x: x+x, (1, 2, 3, 4)))

print(list(c))