Machine learning in successions

Hi , I would like to create a machine learning game that predicts successions ( 2,4,6 – 8) but I have no idea of how to start.
Could you please recommend me any tutorials or documentation to do it?? I have good level in CSharp so I dont mind difficult tutorials.

There’s a lot of documentation out there that explains a lot about machine learning. There are some great free courses, too, but be prepared to get into some really gnarly mathematics if you want to get serious. It’s not going to be just a case of writing code. However, there are some great free libraries out there, though there are very few C# libaries. One I found is ML.NET.

Personally, I would go with a simpler, somewhat hacky system of Markov chains, where you measure the amount of time the difference between two numbers occurs and use Markov chains to predict the next possible outcome.