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 A035070 #17 Jun 18 2021 09:04:07 %S A035070 6,18,55,174,548,1733,5478,17321,54773,173206,547723,1732051,5477226, %T A035070 17320509,54772256,173205081,547722558,1732050808,5477225576, %U A035070 17320508076,54772255751,173205080757,547722557506,1732050807569,5477225575052,17320508075689,54772255750517 %N A035070 a(n) is root of square starting with digit 3: first term of runs. %H A035070 Michael S. Branicky, <a href="/A035070/b035070.txt">Table of n, a(n) for n = 1..1999</a> %F A035070 a(n) = ceiling(sqrt(3*10^n)). %t A035070 Table[Ceiling @ Sqrt[3 * 10^n], {n, 1, 24}] (* _Amiram Eldar_, Oct 08 2019 *) %o A035070 (Python) %o A035070 from math import isqrt %o A035070 def a(n): return isqrt(3*10**n) + 1 %o A035070 print([a(n) for n in range(1, 28)]) # _Michael S. Branicky_, Jun 18 2021 %Y A035070 Cf. A067473 (squares), A035076 (2..9). %K A035070 nonn,base %O A035070 1,1 %A A035070 _Patrick De Geest_, Nov 15 1998 %E A035070 Offset 1 from _Alois P. Heinz_, Oct 08 2019