I'm working on a relatively low-level math project, and for one part of it I need to find to a function that returns how many many configurations are reachable within n moves. from the solved state.
Because there are 18 moves ( using the double moves metric ), one form of the function could be $\sum_{k=1}^{i} 18^{k} $, since it would technically be the sum of all permutations reachable by the amount of moves 0,1,...,n. However, what would a more optimised function, which takes into account factors like inverses, cube symmetry, ...etc look like?
http://cube20.org/ shows exact counts for $n$ up to 15, but only has approximate counts above that.
This probably means no nice formula that would make those higher values easy to compute is known.
(If there were a nice exact formula, it would presumably have shown immediately that going from 20 to 21 moves reveals no new configurations, mooting the whole brute-force search for "god's number").