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.

A037022 Triangle in which row n has the first n digits of sqrt(n) (truncated).

This page as a plain text file.
%I A037022 #20 Mar 04 2020 22:47:23
%S A037022 1,1,4,1,7,3,2,0,0,0,2,2,3,6,0,2,4,4,9,4,8,2,6,4,5,7,5,1,2,8,2,8,4,2,
%T A037022 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,3,3,4,
%U A037022 6,4,1,0,1,6,1,5,1,3,3,6,0,5,5,5,1,2,7,5,4,6,3,3,7,4,1,6,5,7,3
%N A037022 Triangle in which row n has the first n digits of sqrt(n) (truncated).
%H A037022 T. D. Noe, <a href="/A037022/b037022.txt">Rows n=1..100 of triangle, flattened</a>
%e A037022 Triangle starts:
%e A037022   1;
%e A037022   1, 4;
%e A037022   1, 7, 3;
%e A037022   2, 0, 0, 0;
%e A037022   2, 2, 3, 6, 0;
%e A037022   2, 4, 4, 9, 4, 8;
%e A037022   2, 6, 4, 5, 7, 5, 1;
%e A037022   ...
%t A037022 row[n_] := RealDigits[Sqrt[n], 10, n][[1]]; Table[row[n], {n, 1, 14}] // Flatten (* _Jean-François Alcover_, Dec 03 2016 *)
%Y A037022 Cf. A000196 (first column), A023961 (second column), A037023.
%K A037022 nonn,base,nice,easy,tabl
%O A037022 1,3
%A A037022 Jonas Persson (jptmp(AT)hotmail.com), _N. J. A. Sloane_