login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A135607
Floor of the area of a circle in terms of its circumference n.
1
0, 0, 0, 0, 1, 1, 2, 3, 5, 6, 7, 9, 11, 13, 15, 17, 20, 22, 25, 28, 31, 35, 38, 42, 45, 49, 53, 58, 62, 66, 71, 76, 81, 86, 91, 97, 103, 108, 114, 121, 127, 133, 140, 147, 154, 161, 168, 175, 183, 191, 198, 206, 215, 223, 232, 240, 249, 258, 267, 277, 286, 296, 305, 315
OFFSET
0,7
LINKS
FORMULA
Area of a circle of radius r is A = Pi*r^2. Circumference of a circle of radius r is n = 2*Pi*r. Then area in terms of the circumference n is A = n^2/(4*Pi).
EXAMPLE
For a circle of circumference 10, the floor of the area A = floor(100/4/Pi) = 7.
MATHEMATICA
Table[Floor[n^2/(4*Pi)], {n, 0, 25}] (* G. C. Greubel, Oct 21 2016 *)
PROG
(PARI) g(n) = for(c=0, n, a=c^2/4/Pi; print1(floor(a)", "))
(PARI) a(n) = n^2\(4*Pi); \\ Michel Marcus, Oct 22 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Cino Hilliard, Feb 27 2008
STATUS
approved