I am trying to solve this question given in a manual but I can not make the sequence be of odd numbers
I am trying to solve this question given in a manual but I can not make the sequence be of odd numbers
Just pay attention to the parameters.
seq(from = 1, to = 30, by = 2)
from
: start of sequence to
: maximum possible value of the sequence. Not exactly the final element. by
: sequence increment.