Computer Science, asked by anwarhussain9, 4 months ago

0,7,26,63,124....n write a for loop to generate series

Answers

Answered by omaenobaka
0

Explanation:

a=int(input("enter nth term:"))

for i in range (1,a+1):

print(i**3-1,end=' ')

Similar questions