> #a vector of even numbers > seq(0, 10, by=2) # Explicitly specifying "by" only to increase readability > [1] 0 2 4 6 8 10