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

A274210
Decimal expansion of the reciprocal of the constant in A274195.
4
7, 7, 0, 0, 3, 5, 9, 6, 5, 7, 1, 2, 9, 2, 9, 1, 9, 8, 7, 9, 2, 2, 1, 4, 1, 6, 6, 1, 9, 6, 7, 9, 8, 9, 9, 3, 7, 0, 3, 2, 9, 4, 1, 7, 2, 3, 4, 0, 9, 3, 7, 2, 9, 6, 4, 2, 9, 4, 7, 0, 5, 2, 2, 0, 0, 8, 0, 8, 6, 3, 5, 9, 3, 8, 2, 6, 4, 6, 7, 0, 9, 4, 0, 8, 9, 0
OFFSET
0,1
EXAMPLE
Limiting ratio = 0.770035965712929198792214166196...
MATHEMATICA
z = 1600; g[n_, 0] = g[n, 0] = 1;
g[n_, k_] := g[n, k] = If[k > n, 0, g[n - 1, k - 1] + g[n - 1, 3 k]];
t = Table[g[n, k], {n, 0, z}, {k, 0, n}];
w = Map[Total, t]; (*A274194*)
u = N[w[[z]]/w[[z + 1]], 100]
RealDigits[u][[1]] (*A274210*)
CROSSREFS
KEYWORD
nonn,cons,easy
AUTHOR
Clark Kimberling, Jun 16 2016
STATUS
approved