OFFSET
0,2
COMMENTS
As n approaches infinity, the distance between the center and each vertex of a regular polygon with a(n) sides of unit length approaches 2^(n-2) units. - Ahmad J. Masad, Jul 02 2021
MATHEMATICA
Table[FromDigits[RealDigits[Pi, 2, k][[1]], 2], {k, 1, 50}]
PROG
(PARI) a(n) = if(n<1, 1, round(Pi*2^(n-1))); \\ Michel Marcus, Jul 02 2021
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Carlos Alves, Jul 22 2006
EXTENSIONS
Better definition from Jon E. Schoenfield, Jan 17 2015
Definition amended by Georg Fischer, Aug 31 2021
STATUS
approved