login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A373160
a(n) = denominator of Sum_{k>=0} cos(k*Pi/3)/n^k.
3
1, 14, 13, 14, 31, 86, 19, 146, 91, 74, 133, 314, 61, 422, 241, 182, 307, 686, 127, 842, 463, 338, 553, 1202, 217, 1406, 757, 542, 871, 1862, 331, 2114, 1123, 794, 1261, 2666, 469, 2966, 1561, 1094, 1723, 3614, 631, 3962, 2071, 1442, 2257, 4706, 817, 5102
OFFSET
2,2
COMMENTS
The first five fractions are 1/1, 15/14, 14/13, 15/14, 33/31; beginning at 14/13 the sequence of fractions is strictly decreasing with limit 1.
MATHEMATICA
t = Table[Sum[Cos[k Pi/3]/n^k, {k, 0, Infinity}], {n, 2, 60}]
Denominator[t]
(* or *)
Denominator[Table[(n*(2*n - 1))/(2*(n^2 - n + 1)), {n, 2, 100}]] (* Vaclav Kotesovec, May 28 2024 *)
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Clark Kimberling, May 28 2024
STATUS
approved