Pentagonal numbers are generated by the formula, . The first ten pentagonal numbers are:
1, 5, 12, 22, 35, 51, 70, 92, 117, 145, ...
It can be seen that . However, their difference, , is not pentagonal.
Find the pair of pentagonal numbers, and , for which their sum and difference are pentagonal and is minimised; what is the value of ?
Runtime: 0
Average: 0 Runs: 0
SD: 0 ms
Max: 0
Min: 1000
To start I made an array of pentagonal numbers to work with. From
there I found the differences between progressively further apart numbers.
When I found a difference that was also a pentagonal number I checked if
sum of the subtrahend and minuend was also pentagonal.
Out of the 10,000 pentagonal numbers I generated, I only found one match.
58,974