cp's OEIS Frontend

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.

A037023 Triangle in which row n lists the first n digits of sqrt(n) (rounded).

This page as a plain text file.
%I A037023 #22 Aug 30 2023 05:20:43
%S A037023 1,1,4,1,7,3,2,0,0,0,2,2,3,6,1,2,4,4,9,4,9,2,6,4,5,7,5,1,2,8,2,8,4,2,
%T A037023 7,1,3,0,0,0,0,0,0,0,0,3,1,6,2,2,7,7,6,6,0,3,3,1,6,6,2,4,7,9,0,4,3,4,
%U A037023 6,4,1,0,1,6,1,5,1,4,3,6,0,5,5,5,1,2,7,5,4,6,4,3,7,4,1,6,5,7,3
%N A037023 Triangle in which row n lists the first n digits of sqrt(n) (rounded).
%H A037023 T. D. Noe, <a href="/A037023/b037023.txt">Rows n = 1..100 of triangle, flattened</a>
%e A037023 Triangle begins:
%e A037023   1;
%e A037023   1, 4;
%e A037023   1, 7, 3;
%e A037023   2, 0, 0, 0;
%e A037023   2, 2, 3, 6, 1;
%e A037023   2, 4, 4, 9, 4, 9;
%e A037023   2, 6, 4, 5, 7, 5, 1;
%e A037023   2, 8, 2, 8, 4, 2, 7, 1;
%e A037023   3, 0, 0, 0, 0, 0, 0, 0, 0;
%e A037023   3, 1, 6, 2, 2, 7, 7, 6, 6, 0;
%e A037023   3, 3, 1, 6, 6, 2, 4, 7, 9, 0, 4;
%e A037023   3, 4, 6, 4, 1, 0, 1, 6, 1, 5, 1, 4;
%e A037023   3, 6, 0, 5, 5, 5, 1, 2, 7, 5, 4, 6, 4;
%e A037023   ...
%t A037023 sds[n_]:=Module[{c=RealDigits[Sqrt[n],10,n+1][[1]]},If[Last[c]<5, Most[c], IntegerDigits[ FromDigits[Most[c]]+1]]]; Flatten[Array[sds,20]] (* _Harvey P. Dale_, Dec 13 2011 *)
%Y A037023 Cf. A037022.
%K A037023 nonn,base,nice,easy,tabl
%O A037023 1,3
%A A037023 Jonas Persson (jptmp(AT)hotmail.com), _N. J. A. Sloane_