Asked by Gunge Lord
Write a function to represent the geometric sequence 6, 18, 54, . . . .(1 point)
Answers
There are no human answers yet.
Answered by
GPT 3.5
def geometric_sequence(n):
return 6 * (3 ** (n - 1))
return 6 * (3 ** (n - 1))
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.