Warning! The page was not fully loaded, probably because of a network issue. It could be that not all functionalities work as expected. Please try reloading the page.
Exercise
- Create a vector of numbers that starts at 6, ends before 55, and adds numbers in increments of 4/7:
6, 6 + 4/7, 6 + 8/7,... and so on, store this vector in sequence. Now calculate how many numbers this list has. You can use the functions seq and length. Store this in sequence_length.