write a program to display the first ten terms of the
:5,10,17,...
plz answer this question as fast as possible
I will mark you as a brainliest!
Answers
Answer:
Program to find the Nth term of series 5, 10, 17, 26, 37, 50, 65, 82, …
Program to find the Nth term of series 5, 10, 17, 26, 37, 50, 65, 82, …Given a number N. The task is to write a program to find the Nth term of the below series:
Program to find the Nth term of series 5, 10, 17, 26, 37, 50, 65, 82, …Given a number N. The task is to write a program to find the Nth term of the below series:5, 10,17, …(N Terms)
, …(N Terms)Examples:
, …(N Terms)Examples:Input: N = 4
, …(N Terms)Examples:Input: N = 4Output: 82
, …(N Terms)Examples:Input: N = 4Output: 82For N = 4
, …(N Terms)Examples:Input: N = 4Output: 82For N = 44th Term = ( 4 * 4 + 2 * 4 + 2)
, …(N Terms)Examples:Input: N = 4Output: 82For N = 44th Term = ( 4 * 4 + 2 * 4 + 2) = 26
, …(N Terms)Examples:Input: N = 4Output: 82For N = 44th Term = ( 4 * 4 + 2 * 4 + 2) = 26Input: N = 10
, …(N Terms)Examples:Input: N = 4Output: 82For N = 44th Term = ( 4 * 4 + 2 * 4 + 2) = 26Input: N = 10Output: 122