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

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

%S 8,2,4,4,1,5,9,5,0,9,1,5,6,4,9,7,8,9,6,9,8,4,0,4,5,4,5,3,4,7,2,6,2,3,

%T 1,9,7,1,4,2,0,5,7,0,7,8,8,7,0,8,0,4,2,6,5,0,2,9,2,9,5,3,6,0,0,2,8,7,

%U 8,2,9,7,5,1,9,9,7,3,0,1,1,1,7,3,3,8

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

%e limiting ratio = 0.82441595091564978969840454...

%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, 4 k]];

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

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

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

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

%Y Cf. A274198, A274197, A274209, A274210.

%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 June 6 14:13 EDT 2024. Contains 373128 sequences. (Running on oeis4.)