The data you post is difficult to work with as there seems to be a lot of duplicates. But to extract the visitorids with all four values for event_sequence, you can use this query:
SELECT vistorid
FROM tbl
WHERE event_sequence IN (1, 2, 3, 4)
GROUP BY visitorid
HAVING COUNT(DISTINCT event_sequence) = 4
Note: the way to provide sample data is CREATE TABLE + INSERT statements, as that makes it easy to copy and paste into a query window to develop a tested solution.