Vector

# Create the sequence
my_sequence <- seq(from = 20, to = 50, by = 5)

# Print the sequence
print(my_sequence)
## [1] 20 25 30 35 40 45 50