OFFSET
0,1
COMMENTS
Squares of the cotangents of the arcsins of 1/(3*2^n).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (5, -4).
FORMULA
From Philippe Deléham, Nov 26 2008: (Start)
a(n) = 4*a(n-1) + 3, n>0; a(0)=8.
a(n) = 5*a(n-1) - 4*a(n-2), n>1; a(0)=8, a(1)=35.
G.f.: (8-5*x)/(1-5*x+4*x^2). (End)
EXAMPLE
a(2) = 143.
MATHEMATICA
Table[(9*4^n) - 1, {n, 0, 23}] (* Stefan Steinerberger, Feb 16 2006 *)
PROG
(Magma) [9*4^n-1: n in [0..30]]; // Vincenzo Librandi, Oct 29 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Al Hakanson (hawkuu(AT)excite.com), Feb 16 2006
EXTENSIONS
More terms from Stefan Steinerberger, Feb 16 2006
STATUS
approved