This will be a bit long, but i'll try and be as clear as I can.
Your initial arrangement is different from new deck order. To prevent confusion, let us assume you number the cards 1-52 in their initial arrangement and given a number, you should know the name of the corresponding card. After 4 out faro shuffles, the sequence of numbers goes like this:
1 17 33 49 14 30 46 11 and so on.
You wanted to know how to find out the next card in the sequence.
1) Start with the number corresponding to one card (call this a).
2) To find the next card, add 16 to this number (b=a+16)
3) If the number b>52, take modulo with of b with 52 and add 1. i.e.,
c = (b mod 52) + 1
otherwise, c = b
4) The card corresponding to the number c gives you your answer.
example : take the number 17, which is the number corresponding to the second card in the stack. 17+16 = 33. c = 33 and therefore the next card is the one corresponding to this number.
However, if a = 49, then b = 65. c = (65 mod 52) + 1 = 14
BTW, you don't need to start in new deck order, so you could start with any stack and use this formula after 4 faro shuffles as long as you have memorized the initial arrangement exactly.
I hope this is clear, if you have any questions, send me a PM and I'll do my best to answer them.
P.S. You should refer to expert card technique also. It has a chapter devoted to the faro shuffle
Your initial arrangement is different from new deck order. To prevent confusion, let us assume you number the cards 1-52 in their initial arrangement and given a number, you should know the name of the corresponding card. After 4 out faro shuffles, the sequence of numbers goes like this:
1 17 33 49 14 30 46 11 and so on.
You wanted to know how to find out the next card in the sequence.
1) Start with the number corresponding to one card (call this a).
2) To find the next card, add 16 to this number (b=a+16)
3) If the number b>52, take modulo with of b with 52 and add 1. i.e.,
c = (b mod 52) + 1
otherwise, c = b
4) The card corresponding to the number c gives you your answer.
example : take the number 17, which is the number corresponding to the second card in the stack. 17+16 = 33. c = 33 and therefore the next card is the one corresponding to this number.
However, if a = 49, then b = 65. c = (65 mod 52) + 1 = 14
BTW, you don't need to start in new deck order, so you could start with any stack and use this formula after 4 faro shuffles as long as you have memorized the initial arrangement exactly.
I hope this is clear, if you have any questions, send me a PM and I'll do my best to answer them.
P.S. You should refer to expert card technique also. It has a chapter devoted to the faro shuffle