skip

fun <T> Observable<T>.skip(count: Long): Observable<T>

Returns an Observable that skips the first count elements emitted by the source Observable and emits the remainder.

Please refer to the corresponding RxJava document.