OFFSET
0,2
COMMENTS
Also, nonnegative integers m such that 4*m + 77 is a square. The negative values of m are -7, -13, -17, -19.
The product of two consecutive terms belongs to the sequence. In fact: a(k)*a(k+1) = a(k*(k+1)+9*k+1).
LINKS
FORMULA
O.g.f.: (1 + 8*x - 7*x^2)/(1 - x)^3. - Colin Barker, Aug 03 2016
E.g.f.: (1 + 10*x + x^2)*exp(x).
a(n) = a(-n-9) = 3*a(n-1) - 3*a(n-2) + a(n-3). - Colin Barker, Aug 03 2016
a(n) = 1 + A028569(n). - Omar E. Pol, Aug 02 2016
a(n) + a(-n) = (n-1)^2 + (n+1)^2.
Sum_{i>=0} 1/a(i) = 9736/29393 + tan(sqrt(77)*Pi/2)*Pi/sqrt(77) = 1.301517...
MATHEMATICA
Table[n^2 + 9 n + 1, {n, 0, 50}] (* Bruno Berselli, Aug 05 2016 *)
PROG
(PARI) a(n) = n^2 + 9*n + 1 \\ Charles R Greathouse IV, Aug 03 2016
(PARI) Vec((1+8*x-7*x^2)/(1-x)^3 + O(x^100)) \\ Colin Barker, Aug 04 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Miquel Cerda, Aug 02 2016
EXTENSIONS
Edited and extended by Bruno Berselli, Aug 05 2016
STATUS
approved