Define a recurrence relation T(n) that corresponds to the natural numbers, but that "skips" multiples of 3. That is, T(1) = 1, T(2) = 2, T(3) = 4, T(4) = 5, T(5) = 7, T(6) = 8, T(7) = 10, ... Your answer should only have some number of base cases and the general case, but no conditions (like "if n mod3=0").
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here