Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN PYTHON Consider the following sequence of numbers (Its not the fibonacci sequence) 1,1,1,3,5,9,17,31,57.. the first 3 numbers are 1 1 and 1 . Every

IN PYTHON Consider the following sequence of numbers (Its not the fibonacci sequence) 1,1,1,3,5,9,17,31,57.. the first 3 numbers are 1 1 and 1 . Every subsequent number is the sum of the previous 3 numbers . This the 4th number is the sum of 1,1,1 = 3 . The fifth number is the sum of. 1,1,3 thus 5. The sixth number is the sum of. 1,3,5 thus 9 and so on and so forth.

q1 5 points given n output the nth number in this sequence.

sample output:

enter n: 6

the answer is. 9

q2. given two numbers a and b output all numbers in the sequence between a and b (inclusive)

sample output

enter a : 2

enter b: 30

3 5 9 17

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Structured Search For Big Data From Keywords To Key-objects

Authors: Mikhail Gilula

1st Edition

012804652X, 9780128046524

More Books

Students also viewed these Databases questions