OFFSET
3,4
COMMENTS
Asymptotically equivalent to the area of a circle with circumference n, which is Pi*r^2 with r = n/(2*Pi), thus a(n) ~ n^2 / (4*Pi). (The same follows from taking tan(x) = x in the FORMULA.) Indeed, the integer part of this expression is equal to a(n) or a(n)+1, for all n. - M. F. Hasler, Apr 03 2025
FORMULA
a(n) = floor((Pi/4)*(cot(Pi/n)^2)).
EXAMPLE
For n = 5, the circle inscribed in a regular pentagon with sides of unit length has area (Pi/4)*cot(Pi/5)^2 = 1.4878796365..., so a(5) = floor(1.4878796365...) = 1.
MAPLE
a:= n-> floor(Pi/(2*tan(Pi/n))^2):
seq(a(n), n=3..65); # Alois P. Heinz, Feb 20 2023
MATHEMATICA
a[n_] := Floor[(Pi/4)*Cot[Pi/n]^2]; Array[a, 60, 3] (* Amiram Eldar, Feb 24 2023 *)
PROG
(PARI) a(n) = floor((Pi/4)/tan(Pi/n)^2) \\ Andrew Howroyd, Feb 20 2023
(PARI) apply( {A360792(n)=Pi/4\tan(Pi/n)^2}, [3..62]) \\ M. F. Hasler, Apr 03 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
A. Timothy Royappa, Feb 20 2023
EXTENSIONS
More terms from Andrew Howroyd, Feb 20 2023
STATUS
approved
