Posts about NFL
I wrote a program that brute-forced its way through all 27,000 NFL players, creating the longest possible chain of names. Keep in mind that:
This uses the name the player goes by, as listed here: https://www.pro-football-reference.com/players/
This only considers players with exactly one first name and exactly one last name. If you're Bobby Joe Conrad or Kyle Van Noy, you don't get to participate.
No reusing names. This prevents circles, like Jordan Cameron -> Cameron Jordan -> Jordan Cameron = infinity.
There are other chains of equal length. For simplicity, I'm just including one. They're all extremely similar anyway.
It's possible that my code has a bug in it and it didn't actually find the longest possible chain. You can call this the longest known chain, if you wish.
Anyway, here's the name chain:
Edit: Here's the code on GitHub: https://github.com/Useight/NameChain