Skips an initial (count) number of events from a pattern.
drops count elements of the pattern from the stream.
(
p = Pdrop(2, Pseq([1,2,3,4],6));
q = p.asStream.nextN(20).postln;
)