Write a piece of code in Python that grabs N in the input and print out the N number of the sequence below: (in this exa
-
- Site Admin
- Posts: 899589
- Joined: Mon Aug 02, 2021 8:13 am
Write a piece of code in Python that grabs N in the input and print out the N number of the sequence below: (in this exa
question mark. Hint: In order to find the relationship between the terms of the series, you need to find how each term is built using the pervious term and its index. For example: 5=1+4 12=5+4+3 22=12+4+3+3 35=22+4+3+3+3 51-35+4+3+3+3+3
Write a piece of code in Python that grabs N in the input and print out the N number of the sequence below: (in this example, the user had entered 10 as the number of the desired terms) 1 1, 5 1, 5, 12 1, 5, 12, 22 1, 5, 12, 22, 35 1, 5, 12, 22, 35, 51 1, 5, 12, 22, 35, 51, 70 1, 5, 12, 22, 35, 51, 70, 92 1, 5, 12, 22, 35, 51, 70, 92, 117 1, 5, 12, 22, 35, 51, 70, 92, 117, 145 Finding the relationship between the terms is a part of the