OFFSET
1,1
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
Vincenzo Librandi, X^2-AY^2=1, Math Forum, 2007. [Wayback Machine link]
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
G.f.: x*(-43 - 46*x + x^2)/(x-1)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
From Amiram Eldar, Mar 16 2023: (Start)
Sum_{n>=1} 1/a(n) = (1 - cot(Pi/(2*sqrt(11)))*Pi/(2*sqrt(11)))/2.
Sum_{n>=1} (-1)^(n+1)/a(n) = (cosec(Pi/(2*sqrt(11)))*Pi/(2*sqrt(11)) - 1)/2. (End)
MATHEMATICA
44Range[0, 40]^2-1 (* or *) CoefficientList[Series[(1-46 x-43 x^2)/ (x-1)^3, {x, 0, 40}], x] (* Harvey P. Dale, Apr 22 2011 *)
LinearRecurrence[{3, -3, 1}, {43, 175, 395}, 40] (* Vincenzo Librandi, Feb 17 2012 *)
PROG
(Magma) I:=[43, 175, 395]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..40]]; // Vincenzo Librandi, Feb 17 2012
(PARI) for(n=1, 40, print1(44*n^2-1", ")); \\ Vincenzo Librandi, Feb 17 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 23 2009
EXTENSIONS
Comment rewritten, formula replaced by R. J. Mathar, Oct 28 2009
STATUS
approved