The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A295999 Decimal expansion of the limiting ratio of terms in A296000. 2
3, 6, 5, 1, 1, 8, 8, 3, 7, 4, 4, 4, 9, 6, 0, 8, 4, 1, 3, 6, 8, 8, 2, 1, 0, 4, 1, 1, 9, 2, 0, 1, 1, 2, 0, 2, 0, 1, 4, 8, 6, 0, 7, 8, 3, 7, 3, 3, 1, 4, 0, 8, 8, 2, 2, 6, 4, 0, 0, 7, 6, 8, 7, 0, 2, 2, 5, 9, 7, 3, 0, 4, 1, 6, 4, 1, 9, 2, 0, 4, 5, 4, 1, 5, 5, 5 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A296000(n)/A296000(n-1)) -> 3.65118837444960841368821041192011...
See A296000 for a guide to related sequences and limiting ratios.
LINKS
MATHEMATICA
$RecursionLimit = Infinity;
mex[list_] := NestWhile[# + 1 &, 1, MemberQ[list, #] &];
a[0] = 1; a[1] = 3; b[0] = 2; a[n_] := a[n] = Sum[a[k]*b[n - k - 1], {k, 0, n - 1}];
b[n_] := b[n] = mex[Flatten[Table[Join[{a[n]}, {a[i], b[i]}], {i, 0, n - 1}]]];
Table[a[n], {n, 0, 100}] (* A296000 *)
t = N[Table[a[n]/a[n - 1], {n, 1, 500, 100}], 200]
Take[RealDigits[Last[t], 10][[1]], 100] (* A295999 *)
CROSSREFS
Cf. A296000.
Sequence in context: A367036 A296226 A296222 * A296224 A135097 A154008
KEYWORD
nonn,easy,cons
AUTHOR
Clark Kimberling, Dec 04 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 3 12:19 EDT 2024. Contains 373060 sequences. (Running on oeis4.)