A anirban New member Joined Sep 26, 2008 Messages 4 Mar 3, 2009 #1 Code: A(n) = A(n-1) + B(n-1) + C(n-1) B(n) = 3^(n-1) - C(n-1) C(n) = 3^(n-1) - B(n-1) A(1) = B(1) = C(1) = 1 Best if solved using generating function!
Code: A(n) = A(n-1) + B(n-1) + C(n-1) B(n) = 3^(n-1) - C(n-1) C(n) = 3^(n-1) - B(n-1) A(1) = B(1) = C(1) = 1 Best if solved using generating function!
F fasteddie65 Full Member Joined Nov 1, 2008 Messages 360 Mar 4, 2009 #2 I put the equations into my TI-84 calculator, using SEQ mode. Here's a glimpse of what turned up" n A(n) B(n) C(n) 1 1 1 1 2 3 2 2 3 7 7 7 4 21 20 20 5 61 61 61 6 183 182 182 .....
I put the equations into my TI-84 calculator, using SEQ mode. Here's a glimpse of what turned up" n A(n) B(n) C(n) 1 1 1 1 2 3 2 2 3 7 7 7 4 21 20 20 5 61 61 61 6 183 182 182 .....
A anirban New member Joined Sep 26, 2008 Messages 4 Mar 4, 2009 #3 Ya later i solved it using Generating functions Anyway thanks for helping!