Recurrence algorithms, logarithmic series etc
Like how a Fibonacci series is computed from the sum of two preceding terms, etc?
The series is a power series inside a "commutative algebraic form", the simplest of which is the ratio 3/2 (a sesquiplicate ratio). The interesting thing is that this is the inverse of the fraction used in Turing-computable numbers (which is a number that has an integer representation that can be written as a signed-exponent decimal fraction).
The series I'm trying to find a recursion for is:
1 9 54 321 1,847 9,992 50,136 227,536 870,072 1,887,748 623,800 2,644 3,674,160
The last number is a summed total of all the numbers to its left, sorta like the equation, but with 12 a[sub]n[/sub] terms, rather than 2, so there is a second inner sequence that the rightmost total adds together, in a; the inner sequence is b, say.
I mean, all logarithmic forms come down to a base of numbers, ultimately log2 is the last "useful" base....
->??
The "brute force" approach is to subtract the leftmost number from the total, factor the new total and so on, look for say, large primes you can factor into terms that divide a remainder....