Using the integer sequence function seq.int(start,end,step) to determine the sequence of numbers per homework. starting at 20 and ending at 50 with a sequence of 5.

HW Mark Schmalfeld

knitr::opts_chunk$set(echo = TRUE)

#Use integer sequence with start, end and the increment
start<-20
end<-50
step<-5
seq.int(start,end,step)
## [1] 20 25 30 35 40 45 50

R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.