OFFSET
1,3
COMMENTS
Given a regular polygon with n sides, a(n) is the number of circles that have an edge of the polygon as a diameter (5 for n=4, 10 for n=5, 13 for n=6, ...). - Ahmet Arduç, Jan 28 2017
Quasipolynomial of order 2. [Charles R Greathouse IV, Dec 07 2011]
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,2,-2,-1,1).
FORMULA
a(n) = C(n, 2) if n odd, a(n) = C(n, 2)-n/2+1 if n even.
G.f.: x^2*(1+2*x+x^3)/((1-x)*(1-x^2)).
a(n) = ( n*n +n -(n-1)*(n mod 2) )/2. [Frank Ellermann]
EXAMPLE
E.g. for n=4 [1:2][2:3][3:1][1:4][4:2], so a(4) = 5.
MATHEMATICA
LinearRecurrence[{1, 2, -2, -1, 1}, {0, 1, 3, 5, 10}, 60] (* Harvey P. Dale, Mar 14 2015 *)
CoefficientList[ Series[-x (x^3 + 2x + 1)/((x - 1)^3 (x + 1)^2), {x, 0, 52}], x] (* Robert G. Wilson v, Jul 30 2018 *)
PROG
(PARI) a(n)=if(n%2, n^2-n, n^2-2*n+2)/2 \\ Charles R Greathouse IV, Dec 07 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved