OFFSET
0,6
COMMENTS
Inspired by squaring the circle and Vitruvian Man, but starting with a unit circle and a square whose sides are of length sqrt(Pi), A002161. a(n) is the curvature (rounded down) of the n-th circle. See illustrations in the links.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
Kival Ngaokrajang, Illustration of initial terms.
Wikipedia, Squaring the circle.
FORMULA
a(n) = floor((2/sqrt(Pi))^n).
MATHEMATICA
Table[Floor[(2/Sqrt[Pi])^n], {n, 0, 50}] (* G. C. Greubel, Jan 09 2017 *)
PROG
(PARI){for(n=1, 100, a=floor(2^n/sqrt(Pi)^n); print1(a, ", "))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Kival Ngaokrajang, Feb 22 2015
STATUS
approved