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!)
A274210 Decimal expansion of the reciprocal of the constant in A274195. 4

%I #5 Jun 16 2016 21:47:17

%S 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,

%T 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,

%U 6,3,5,9,3,8,2,6,4,6,7,0,9,4,0,8,9,0

%N Decimal expansion of the reciprocal of the constant in A274195.

%e Limiting ratio = 0.770035965712929198792214166196...

%t z = 1600; g[n_, 0] = g[n, 0] = 1;

%t g[n_, k_] := g[n, k] = If[k > n, 0, g[n - 1, k - 1] + g[n - 1, 3 k]];

%t t = Table[g[n, k], {n, 0, z}, {k, 0, n}];

%t w = Map[Total, t]; (*A274194*)

%t u = N[w[[z]]/w[[z + 1]], 100]

%t RealDigits[u][[1]] (*A274210*)

%Y Cf. A274195, A274194, A274195, A274209, A274211.

%K nonn,cons,easy

%O 0,1

%A _Clark Kimberling_, Jun 16 2016

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 April 19 11:14 EDT 2024. Contains 371791 sequences. (Running on oeis4.)