Say we have a function (loosely speaking) which takes an input of an integer x1x2x3x4..xn, where xn is the nth digit in the integer. This function sums the digits of this number modulo(9) and maps it to this number.
So f(19)-> (1+9)modulo 9 -> 1 , f(104729) -> (1+0+4+7+2+9)modulo 9 -> 5. f(209459) -> 2.
Edit: I just realised that: g(x) = x(modulo 9), ie g(19)-> 19 (modulo 9) -> 1 etc gives the same result. Much simpler.
I've noticed that applying this 'function' to the primes in many Cunningham chains (could it be all?) gives a distinct pattern.
All primes in these chains will either map to a sequence of 2's and 5's, starting with either 2 or 5 or all 8's.
https://primefan.tripod.com/CunninghamChains.html
Gives a list of chains and you can apply this function to each and see the pattern.
eg: (104369, 208739, 417479, 834959)->(5,2,5,2)
(43541,87083) -> (8,8)
I guess my overall question is, does there exist a chain that breaks this pattern and if not then could this could help in finding more chains?