Computer Science, asked by gargbhawana67, 17 days ago

write a program in python to generate a sequence between 50 and 30 in reverse sequence omitting numbers 41,47,31 and 37.​

Answers

Answered by crankybirds31
0

Answer:

The additive sequence is a sequence of numbers where the sum of the first two numbers is equal to the third one.

Sample additive sequence: 6, 6, 12, 18, 30

In the above sequence 6 + 6 =12, 6 + 12 = 18, 12 + 18 = 30....

Also, you can split a number into one or more digits to create an additive sequence.

Sample additive sequence: 66121830

In the above sequence 6 + 6 =12, 6 + 12 = 18, 12 + 18 = 30....

Note : Numbers in the additive sequence cannot have leading zeros.

Answered by Simi011
5

Explanation:

Right answer is 31,37,41,47

thanks hope that helps you

Similar questions