64.7k views
3 votes
How do you create a sequence that can generate integers numbers 1, 5, 9, 13, ...?

A- create sequence mySEQ start with 1 increment by4;
B- create sequence mySEQ as 1, 5, 9, 13, ...;
C- create sequence mySEQ start with 4 increment by 1;
D- create sequence mySEQ start 1 and increment 4;

User Zrvan
by
8.6k points

1 Answer

2 votes

Final answer:

To create a sequence that generates the numbers 1, 5, 9, 13, ..., you can start with 1 and increment by 4 for each subsequent number.

Step-by-step explanation:

To create a sequence that generates the numbers 1, 5, 9, 13, ... you can use the approach in option A, which is to start with 1 and increment by 4.

This means that each subsequent number in the sequence is obtained by adding 4 to the previous number. The formula for the sequence can be represented as: an = an-1 + 4, where a1 = 1.

User Anran Zhang
by
8.1k points