OFFSET
1,1
COMMENTS
Or, numbers n such that n^2 == 2 mod 23.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (1,1,-1).
FORMULA
a(n) = a(n-1)+a(n-2)-a(n-3), with a(1)=5, a(2)=18, a(3)=28.
G.f.: x*(5 + 13*x + 5*x^2)/((1 + x)*(1 - x)^2). - Vincenzo Librandi, May 03 2014
Sum_{n>=1} (-1)^(n+1)/a(n) = cot(5*Pi/23)*Pi/23. - Amiram Eldar, Feb 26 2023
MATHEMATICA
LinearRecurrence[{1, 1, -1}, {5, 18, 28}, 80] (* Vincenzo Librandi, Feb 29 2012 *)
CoefficientList[Series[(5 + 13 x + 5 x^2)/((1 + x) (1 - x)^2), {x, 0, 60}], x] (* Vincenzo Librandi, May 03 2014 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 22 2009
EXTENSIONS
New name from Charles R Greathouse IV, Jan 11 2012
STATUS
approved