What are the next two terms in the pattern 3, 6, 5, 10,9, 18, 17, . . .?
2 Answers
They could be
Explanation:
This sequence seems to come from an alternating iterative rule where on odd steps you double the previous number and on even steps you subtract
The formula for a general term of the sequence may be written:
#a_n = { (2^((n+1)/2)+1, "if n is odd"), (2^(n/2+1)+2, "if n is even") :}#
To avoid the condition on
#a_n = (2^((n+1)/2)+1) * (1-(-1)^n)/2 + (2^(n/2+1)+2) * (1+(-1)^n)/2#
It's actually easier than that, unless you need a formula.
Explanation:
The pattern is: double, then subtract 1, or
multiply by 2, subtract 1.
The continuation would be:
and so on.