OFFSET
1,4
COMMENTS
Sequence of numerators does not match sequence of denominators.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..117
FORMULA
a(n) = c(n-2)/gcd(c(n-1), c(n-2)), where c(n) = Product_{k=1..floor(n/2)} (3*2^(n-2k) - 1).
EXAMPLE
{b(n)} begins 1, 1, 2, 5/2, 22/5, 115/22, 1034/115,...
So b(7) = 1 + 1 + 1/2 + 5/2 + 5/22 + 115/22 + 115/1034 = 10925/1034 and therefore a(7) = 1034.
MATHEMATICA
b = {1}; Do[AppendTo[b, Sum[b[[k]]^((-1)^(n - k + 1)), {k, 1, n}]], {n, 1, 30}]; Table[Denominator[b[[j]]], {j, 1, Length[b]}] (* Stefan Steinerberger, Oct 16 2007 *)
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Leroy Quet, Mar 13 2006
EXTENSIONS
More terms from Stefan Steinerberger, Oct 16 2007
STATUS
approved