OFFSET
0,2
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..20000
G. Xiao, Contfrac
Index entries for linear recurrences with constant coefficients, signature (0,2,0,-1).
FORMULA
From Colin Barker, Sep 08 2013: (Start)
a(n) = (-1+3*(-1)^n-8*(-1+(-1)^n)*n)/2 for n>1.
a(n) = 2*a(n-2)-a(n-4) for n>5.
G.f.: x*(x^4-x^3+8*x^2+x+7) / ((x-1)^2*(x+1)^2). (End)
EXAMPLE
0.12565513657513096779267821... = 0 + 1/(7 + 1/(1 + 1/(22 + 1/(1 + ...)))). - Harry J. Smith, Jun 14 2009
MATHEMATICA
Join[{0, 7}, LinearRecurrence[{0, 2, 0, -1}, {1, 22, 1, 38}, 100]] (* Vincenzo Librandi, Jan 03 2016 *)
PROG
(PARI) { allocatemem(932245000); default(realprecision, 97000); x=contfrac(tan(1/8)); for (n=0, 20000, write("b019431.txt", n, " ", x[n+1])); } \\ Harry J. Smith, Jun 14 2009
(PARI) Vec(x*(x^4-x^3+8*x^2+x+7)/((x-1)^2*(x+1)^2) + O(x^100)) \\ Colin Barker, Sep 08 2013
(Magma) [0, 7] cat [(-1+3*(-1)^n-8*(-1+(-1)^n)*n)/2: n in [2..80]] // Vincenzo Librandi, Jan 03 2016
CROSSREFS
KEYWORD
nonn,cofr,easy
AUTHOR
STATUS
approved