answersLogoWhite

0


Best Answer

It can be written recursively as follows:

U1 = 1

U2 = 6

U3 = 4

Un = Un-1 + Un-2 - Un-3 for n ≥ 4

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is the pattern 1 6 4 9 7 12 10 recursive?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is 1-4-9-16-25-36 a recursive pattern?

no it is not a recursive pattern because it isn't equal numbers.


Is 1 11 21 31 41 a recursive pattern?

Yes. Each term is 10 more than the previous term.


How do you do recursive pattern rule?

a recursive pattern is when you always use the next term in the pattern... for example 4,(x2+1) 9,(x2+1) 19,(x2+1) 39,(x2+1) 79,(x2+1) 159


Is this pattern recursive 1 11 111 1111 11111?

Oh honey, that pattern is as recursive as a broken record playing the same old tune. Each number just adds another 1 to the end, like a never-ending saga of ones. So yeah, it's recursive alright, just like that annoying jingle that gets stuck in your head for days.


What is the next number in the following recursive pattern 1 410 2246?

5509.


Is 1 4 9 16 25 36 a recursive pattern?

Yes


Is 1 11 31 71 151 a recursive pattern?

Oh honey, that's not a recursive pattern, that's just a sequence of numbers increasing by 10 each time. It's like counting by tens but starting at 1 instead of 10. So, no recursion here, just some basic addition.


How can a recursive pattern go from 3 to 4 to 6 to 10 then 18?

t(1) = 3 t(n) = t(n-1) + 2(n-2) for n = 2, 3, 4, ...


Is 1 11 20 30 39 a recursive pattern?

Yes. The next two numbers would be 49 & 58. This is because, from the first number, the pattern repeats by adding 10 then 9. So - 39+19 is 49, and 49+9=58.


1,11,20,30,39 Are these numbers are recursive how do you jnow?

The numbers are increasing by 10, then 9. 1 + 10 = 11, 11 + 9 = 20, and so on.


What is analysis of recursive program?

1) Recursive algorithms 2) Basic Principle 3) Analysis


What is the recursive formula for -14 -8 -2 4 10?

t(n+1) = t(n) + 6 t(1) = -14