Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The triangular numbers are as follows: 136 10 15 21 etc. || || || || || || 1 1 + 2 1+ 2+ 3
The triangular numbers are as follows: 136 10 15 21 etc. || || || || || || 1 1 + 2 1+ 2+ 3 1+2+ 3+ 4 1+ 2+ 3+ 4 + 5 1 + 2+ 3+ 4+ 5+ 6 The series begins with 1 (the first triangular number). To calculate the nth triangular number, n is added to the previous triangular number. For example, the fourth triangular number is calculated by adding 4 to the third triangular number (which is 6), i.e. 10 = (1+2+3) + 4. Write a recursive function in that will calculate the nth triangular number. Note: will not receive any credit for a non-recursive solution. For example, the following statements would lead to the underlined output: Example 1: print (triNum(1)); 1 Example 2: print (triNum(2)); 3 Example 3: print (triNum( 5 )); 15 Note: you may assume the parameter will be positive - no error checking of inputs is required.
Step by Step Solution
★★★★★
3.57 Rating (147 Votes )
There are 3 Steps involved in it
Step: 1
Heres is the recursive Python function that calculates the nth ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started