Question
The arbitrary Geometric sequence is one of the sequences your program must support. The arbitrary Geometric sequence generating function will need to ask the user
The arbitrary "Geometric" sequence is one of the sequences your program must support. The arbitrary Geometric sequence generating function will need to ask the user for the first value in the sequence and then ask for the value that must be multiplied with each previous element to produce the next element in the sequence. As a clarifying example, if the user provides the values 5 and 3, then the first six elements of the arbitrary Geometric sequence would be 5, 15, 45, 135, 405, 1215. Write a function that takes the desired length of the sequence as an argument and produces (as a return value) a list of the elements of the arbitrary Geometric sequence of that length. The arbitrary Geometric sequence generating function you write must be RECURSIVE.
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