Engel expansion
Engel expansion! How did I overlook this in my previous investigations of how to generate Egyptian fractions? As I just finished including in that article, this technique was apparently known to Fibonacci, who also investigated the more well known greedy method for Egyptian fractions.
Anyway, my Egyptian fraction Python code now knows how to generate expansions of this type. If you run, e.g.,
you will get the expansion
where each denominator is a multiple of the previous one: \( 3 \), \( 3\times 5 \), \( 3\times 5\times 6 \), \( 3\times 5\times 6\times 17 \). By default it generates the standard expansion in which these multipliers \( 3, 5, 6, 17 \) are nondecreasing, but it can also generate infinitely many other expansions without this nondecreasing property, so the -a option should only be used in conjunction with -d or -l.
Comments:
2006-09-28T11:43:33Z
Nice. Few notes to the code:
When the user doesn't give any input, the program can show a tiny usage demo, that shows what the module is capable of (like your 7/17 engel example).
In singleSolution function the final return seems useless.
When Python 2.5 will be more widespread, the itemCounts function can be written like:
But now lot of people don't have Python 2.5 so your code is better.
This line:
Is probably better like this:
2006-09-28T14:00:14Z
Thanks. Note that I'm still running Python 2.3, so I can't use the comprehension without brackets.