What is the greatest common denominator of $t(c^a)$ and $t(c^b)$, if $t(n) := k_1 f_1^n + k_2 f_2^n $?
I already found out that the gcd is always a member of $t(n), n \in N $.
$t(n)$ was originally defined of as $t(n) = 10 t(n-1) + t(n-2)$ and $t(0) = 1, t(1) = 10$. WolframAlpha gave me the equation from my first sentence. (The link gives the values for $k_1, k_2, f_1, f_2$.)
This resource gives many useful identities for both gcds and Fibonacci numbers. I tried to use Example 251 but for that I would need to adapt Theorem 102 and subsequently Theorem 50, which I failed to do. Example 251 proves that $gcd(f_m, f_n) = f_{gcd(n, m)}$, where $f_n$ is the nth Fibonacci number.
Here is a table of some results. There clearly is a pattern, but I can't find it. I fixed c=2 and iterated over a=[0,14], b=[0,14]. The value shown is $i$ s.t. $t(i) = gcd(t(c^a), t(c^b))$
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 2 0 2 0 2 0 2 0 2 0 2 0 2 0
0 0 4 0 0 0 4 0 0 0 4 0 0 0 4
0 2 0 8 0 2 0 2 0 8 0 2 0 2 0
0 0 0 0 16 0 0 0 0 0 0 0 16 0 0
0 2 0 2 0 32 0 2 0 2 0 2 0 2 0
0 0 4 0 0 0 64 0 0 0 4 0 0 0 4
0 2 0 2 0 2 0 128 0 2 0 2 0 2 0
0 0 0 0 0 0 0 0 256 0 0 0 0 0 0
0 2 0 8 0 2 0 2 0 512 0 2 0 2 0
0 0 4 0 0 0 4 0 0 0 1024 0 0 0 4
0 2 0 2 0 2 0 2 0 2 0 2048 0 2 0
0 0 0 0 16 0 0 0 0 0 0 0 4096 0 0
0 2 0 2 0 2 0 2 0 2 0 2 0 8192 0
0 0 4 0 0 0 4 0 0 0 4 0 0 0 16384
Possibly related: https://math.stackexchange.com/a/468493/13597
Comment:
So as not to have too many comments below Aleks Vlasev's answer, I will write this here.
I found that $gcd(c^a + 1, c^b + 1) = (c \mod 2)$, if either a or b is odd (and the other even). The only difficult case to remain now, is if both a and b are even.
The remaining question has been moved to its own question here: $\gcd(c^a + 1, c^b + 1)$ for even $a$ and $b$?
t(i) = gcd(..., ...)
and t(0) = 1. So wherever the value is 0 the gcd is 1. – Unapiedra Oct 15 '13 at 11:58