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”).

A281112
Decimal expansion of (conjectured) limit c(n+1)/c(n), where c = A078140.
2
1, 6, 8, 8, 9, 2, 4, 1, 1, 0, 7, 6, 9, 1, 6, 5, 2, 0, 6, 6, 8, 6, 3, 5, 9, 6, 4, 3, 7, 1, 9, 8, 3, 3, 6, 0, 8, 9, 6, 1, 4, 6, 2, 6, 4, 6, 6, 1, 6, 6, 7, 2, 1, 9, 1, 6, 4, 5, 6, 6, 3, 5, 6, 6, 6, 4, 0, 8, 9, 2, 9, 4, 3, 8, 6, 0, 4, 8, 4, 5, 9, 7, 5, 6, 9, 4
OFFSET
1,2
EXAMPLE
Limit_{n->oo} c(n+1)/c(n) = 1.688924110769165206686359... (conjectured)
MATHEMATICA
z = 3880; r = GoldenRatio;
f[x_] := f[x] = Sum[Floor[r*(k + 1)] x^k, {k, 0, z}];
t = CoefficientList[Series[1/f[x], {x, 0, z}], x]; (* A078140 *)
Table[N[t[[n]]/t[[n - 1]], 80], {n, 2, z, 100}]
u = N[t[[z]]/t[[z - 1]], 120]
RealDigits[Abs[u], 10][[1]] (* A281112 *)
CROSSREFS
Sequence in context: A346289 A049110 A136050 * A229020 A113697 A154476
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Feb 10 2017
STATUS
approved