Problem 54675. Define an arithmetic sequence
Given three numbers n, a, and d, define an arithmetic sequence of n terms with a being the initial term of the sequence and d being the common difference of the sequence. If n = 0, then return an empty array since there would be no terms in the sequence.
Examples:
Input [n,a,d] = deal(10,5,2)
Output seq = [5 7 9 11 13 15 17 19 21 23]
Input [n,a,d] = deal(5,2,-3)
Output seq = [2 -1 -4 -7 -10]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers25
Suggested Problems
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1821 Solvers
-
Back to basics 13 - Input variables
266 Solvers
-
Number of 1s in a binary string
9084 Solvers
-
1879 Solvers
-
Find the slope of a line that passes through two vectors
50 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!