Find the next number in the following series:
11, 12, 20, 23, 33, 46, ?, ?
Shift the recursive Fibonacci sequence 3 terms to the left, call it f(n) = 3, 5, 8, 13, 21, 34, 55, ... and apply an incremented base scheme starting with 2. So t(n) = f(n)base(n+1). t(7) = f(7)base(8) = 55 base(8) = 67. Why are there two question marks in the question when it says to find the next number (raises eyebrow)?
|
Posted by Haiosu
on 2004-02-14 17:03:18 |