This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A175733 #16 Apr 25 2021 12:18:04 %S A175733 4,25,121,1369,10201,100489,1018081,10004569,100140049,1000267129, %T A175733 10000600009,100008370081,1000006000009,10000033772089, %U A175733 100000380000361,1000000025191729,10000001400000049,100000000621806289,1000000014000000049,10000000055856073561 %N A175733 a(n) is the smallest n-digit number with 3 divisors. %F A175733 a(n) = A131581(n-1)^2. %t A175733 Table[Prime[1 + PrimePi[Sqrt[10^n]]]^2, {n, 0, 25}] (* _T. D. Noe_, Aug 19 2011 *) %o A175733 (Python) %o A175733 from math import sqrt %o A175733 from sympy import nextprime %o A175733 def a(n): return nextprime(int(sqrt(10**n+1)))**2 %o A175733 print([a(n) for n in range(20)]) # _Michael S. Branicky_, Apr 25 2021 %Y A175733 Cf. A131581, A132153, A136582, A175734. %K A175733 nonn,base %O A175733 1,1 %A A175733 _Jaroslav Krizek_, Aug 24 2010