OFFSET
0,2
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..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.: -(1 + 38*x + 41*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>=0} 1/a(n) = (coth(Pi/(2*sqrt(10)))*Pi/(2*sqrt(10)) + 1)/2.
Sum_{n>=0} (-1)^n/a(n) = (cosech(Pi/(2*sqrt(10)))*Pi/(2*sqrt(10)) + 1)/2. (End)
MAPLE
MATHEMATICA
40*Range[0, 40]^2+1 (* or *) LinearRecurrence[{3, -3, 1}, {1, 41, 161}, 40] (* Harvey P. Dale, Jul 25 2011 *)
Table[40n^2+1, {n, 0, 100}] (* Wesley Ivan Hurt, Sep 27 2013 *)
PROG
(Magma) I:=[1, 41, 161]; [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 16 2012
(PARI) for(n=0, 40, print1(40*n^2 + 1", ")); \\ Vincenzo Librandi, Feb 16 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 22 2009
EXTENSIONS
Comment rewritten, formula replaced by R. J. Mathar, Oct 28 2009
STATUS
approved