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!)
A335846 Decimal expansion of lim_{n->infinity} (1 - 1/2!)^((1/2! - 1/3!)^(...^(1/(2n-1)! - 1/(2n)!))). 0
5, 4, 8, 7, 7, 3, 5, 4, 7, 0, 4, 0, 8, 5, 6, 8, 7, 5, 1, 3, 0, 6, 9, 9, 2, 2, 7, 4, 0, 6, 9, 1, 4, 5, 5, 5, 6, 2, 6, 0, 0, 0, 4, 6, 7, 3, 8, 0, 3, 0, 4, 6, 4, 8, 9, 7, 2, 6, 3, 9, 1, 4, 7, 2, 0, 2, 0, 5, 1, 1, 1, 5, 1, 6, 7, 9, 5, 2, 4, 9, 1, 9, 0, 1, 6, 3, 1, 3, 8, 6, 1, 0, 3, 6, 4, 7, 6, 1, 8, 9, 4, 1, 3, 3 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The sequence of real values x(n) = (1 - 1/2!)^((1/2! - 1/3!)^(...^(1/n! - 1/(n+1)!))) converges to two different limits depending on whether n is even or odd. This integer sequence gives the decimal expansion of the lower limit, to which the odd-indexed terms of {x(n)} converge.
LINKS
Rafik Zeraoulia, Does this a_n = ... have a finite limit?, Math Stackexchange.
EXAMPLE
0.54877354704085687513069922740691455562600046738030...
MATHEMATICA
(* note that FullSimplify[1/Factorial[i]-1/Factorial[i+1]] == i/Gamma[2 + i]
which is i/Factorial[1 + i] for integer i *)
sequence = Table[Fold[#2^#1 &, Table[i/(i + 1)!, {i, n, 1, -1}]], {n, 1, 15}];
ListLinePlot[N /@ sequence, PlotRange -> {0, 1}]
N[sequence[[-1]]]
N[sequence[[-2]]]
PROG
(PARI) my(N=99, y=(N/(N+1)!)); forstep(n=N-1, 1, -1, y = ((n/(n+1)!)^y)); y \\ Michel Marcus, Jul 05 2020
CROSSREFS
Cf. A328941.
Sequence in context: A334401 A295162 A002340 * A023845 A051555 A309543
KEYWORD
nonn,cons
AUTHOR
R Zeraoulia, Jun 26 2020
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)