login
Integer part of the radii of circles with area n.
0

%I #5 Mar 14 2015 09:47:19

%S 0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,

%T 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,

%U 4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5

%N Integer part of the radii of circles with area n.

%F Radius = floor(sqrt(Area/Pi)).

%e If A = 4. floor(sqrt(4/Pi)) = 1, the 4th entry.

%o (PARI) f(n) = for(x=1,n,print1(floor(sqrt(x/Pi))","))

%K nonn

%O 1,13

%A _Cino Hilliard_, Aug 22 2004