OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..2000
Index entries for linear recurrences with constant coefficients, signature (3, -3, 1).
FORMULA
a(0)=9, a(1)=121, a(2)=361, a(n)=3*a(n-1)-3*a(n-2)+a(n-3). - Harvey P. Dale, Feb 23 2014
Sum_{n>=0} 1/a(n) = psi'(3/8)/64 = 0.127527775511898... - R. J. Mathar, May 07 2024
MATHEMATICA
Table[(8n + 3)^2, {n, 0, 40}] (* Stefan Steinerberger, Apr 08 2006 *)
LinearRecurrence[{3, -3, 1}, {9, 121, 361}, 40] (* Harvey P. Dale, Feb 23 2014 *)
PROG
(Magma) [(8*n+3)^2: n in [0..40]]; // Vincenzo Librandi, Jun 07 2011
(PARI) a(n)=(8*n+3)^2 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Stefan Steinerberger, Apr 08 2006
STATUS
approved