Well, i must develop a software that can discovery a pattern in sequence of numbers, ex:
First Pattern: 10,20,30,40,50.. (The software must understand that numbers are always count +10).
Second Pattern: 1,3,5 ... ( The software must understand that numbers are always odd).
So, the pattern is defined by user and the software must continue the sequence. Exists some algorithm wit this propose ?
PS: I'm thinking about I.A techniques, like BackPropagation or something else, but this is better solution ? Don't have a more easy solution ?
The only solution I can see is to write a function to check for every possible pattern and then output the once that return true. So you take the first value check how much is added and then check if the next one is equally bigger. Then check if the others follow said pattern. Do note that your first and second example would given this algorithm both have the same type of pattern (new value = last value + constant).
So in pseudoishcode your first function would look something like this:
Next you might want to start looking for a way to detect primes which I would advice to search for as it's a common algorithm.
An alternative if you think there really are going to be nearly infinite possible sequences I suggest you look into gennetic programming. And then use the number of matching numbers as fitness function of your program. However this only works if you have a very large number of available data points and might not even function at all. Another problem is that this way you will be unable to output the correct answer and merely be able to predict future answers.