asked 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;

asked
User Zrvan
by
8.9k 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.

answered
User Anran Zhang
by
8.6k points

Related questions

asked Jan 26, 2024 116k views
Geoff Norton asked Jan 26, 2024
by Geoff Norton
8.0k points
1 answer
5 votes
116k views
1 answer
2 votes
152k views