I am looking to create a sequence that contains only rational numbers but converges to an irrational number, e.g $\sqrt{2}$. In this effort, I thought a possible idea could be to define some countable set S that contains all fractional approximations of $\sqrt2$ with some $10^n$ base and then let a sequence $x_n$ return the $n^{th}$ element in $S$.
So, $$S = \biggl\{\frac{14}{10}, \frac{141}{100}, \frac{1414}{1000}, \frac{14142}{10000}, \ldots \biggr\},$$
$$x_n = S_n,$$
$$\lim(x_n) = \sqrt{2}$$
I don't really know why, but I feel like this is illegal in some way. Something to do with the fact that the way you construct the set $S$ is by looking at the decimal approximation $\sqrt{2}$ is a bit fishy to me.
I'm pretty confident this solution is not valid somewhere, but could someone help me out in finding where/why exactly it is invalid?
Thanks!