Assume we have a sequence of type $a_n=\frac{n^x}{10^n}$.The corresponding series would be one with the formula $s_{n+1}=s_n+\frac{n^x}{10^n}$.
We can obviously see that when x = 1, this would result in $s_n$ approaching the value 0.123456... And indeed, when I checked using Python, I got the following output: 0.1234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567901234567898
This matches the idea that there should be a repeating pattern. However, when instead using x = 2 or 3, I also get a repitition. These are my outputs: 0.1508916323731138545953360768175582990397805212620027434842249657064471879286694101508916323731138545953360768175582990397805212620027434842249657064471879286694101508916323731138545953360768175582990397805212620027434842249657064471879286694101508916323731138545953360768175582990397804271 (repitition always starts with 1508) and 0.2149062642889803383630544124371284865112025605852766346593507087334247828074988568815729309556470050297210791037951531778692272519433013260173754000914494741655235482395976223136716963877457704618198445358939186099679926840420667581161408321902149062642889803383630544124371284865111751489 (with the repitition always starting with 2149)
Where does this pattern stem from?
My code can be found here.