OFFSET
0,1
COMMENTS
For i=0..28, 2*a(i)+3 is prime . - Vincenzo Librandi, Jun 01 2014
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
G.f.: (13 - 25*x + 14*x^2)/(1 - x)^3.
a(n) = a(-n) = 3*a(n-1) - 3*a(n-2) + a(n-3) = a(n-1) + 2*n - 1.
From Amiram Eldar, Nov 02 2020: (Start)
Sum_{n>=0} 1/a(n) = (1 + sqrt(13)*Pi*coth(sqrt(13)*Pi))/26.
Sum_{n>=0} (-1)^n/a(n) = (1 + sqrt(13)*Pi*cosech(sqrt(13)*Pi))/26. (End)
MATHEMATICA
Table[n^2 + 13, {n, 0, 60}]
PROG
(Magma) [n^2+13: n in [0..60]];
(PARI) a(n)=n^2+13 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 30 2014
STATUS
approved