Question
Tribonacci numbers are the numbers in a sequence in which the first three elements are 0, 1, and 1, and the value of each subsequent
Tribonacci numbers are the numbers in a sequence in which the first three elements are 0, 1, and 1, and the value of each subsequent element is the sum of the previous three elements: 0, 1, 1, 2, 4, 7, 13, 24, ...
Write a user defined function to determine the nth Tribonacci number. Name the function Tribonacci(). The function takes an integer n 1 and returns its corresponding Tribonacci number. For example, the function must return 0 for n=1, 1 for n=2 and 13 for n=7 and so on.
The function must display an error message if the number entered was either less than 1 or not an integer.
The function must have a help section that shows what it exactly does, its input and its output. Use the function to determine the Tribonacci number for n = 0, 2.5, 3, 10, 20, and 34.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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