I am a beginner and I found that there are some links between the divisions of a large number which I don't understand. I couldn't find any way to explain them mathematically so I am hoping someone can explain this to me.
I am using python. We have the following division operations:
20011548789665855544566//6 = 3335258131610975924094
20011548789665855544566//7 = 2858792684237979363509
If we subtract the two results we get:
3335258131610975924094 - 2858792684237979363509 = 476465447372996560585
If we continue further along with dividing the same number we get:
20011548789665855544566//20 = 1000577439483292777228
20011548789665855544566//21 = 952930894745993121169
And if we subtract these two results we get:
1000577439483292777228 - 952930894745993121169 = 47646544737299656059
The result of the two subtractions is very close although the divisions are quite further apart:
476465447372996560585 vs. 47646544737299656059
How can this be explained? And is there any way to know the next 'pair' of divisions of the initial number which will result in this 'pattern' when subtracted?
4764654473729...
Thanks!