cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A341325 Decimal expansion of (1/2)^(2/3)^...^(n/(n+1))^... .

This page as a plain text file.
%I A341325 #14 Mar 03 2021 06:04:56
%S A341325 6,0,4,4,0,7,6,0,0,4,4,4,4,4,7,8,4,2,4,1,2,2,0,3,8,4,0,4,4,3,4,0,6,8,
%T A341325 5,7,0,9,8,6,3,3,3,1,1,2,9,9,8,5,5,0,8,9,9,4,3,6,0,7,7,7,6,0,9,8,6,5,
%U A341325 2,2,8,8,7,4,3,3,0,3,4,4,7,8,9,8,1,2,3,7,6,9,1,2,8,6,9,8,5,9,0,6,9,9,4,5,6,5
%N A341325 Decimal expansion of (1/2)^(2/3)^...^(n/(n+1))^... .
%e A341325 0.604407600444447842412203840443406857098633311299855...
%t A341325 digits = 120; difs = 1; sold = 0; n = 10; While[Abs[difs] > 10^(-digits - 5), s = N[n/(n + 1), 1000]; Do[s = (m/(m + 1))^s, {m, n - 1, 1, -1}]; difs = s - sold; sold = s; n++]; RealDigits[s, 10, 120][[1]] (* _Vaclav Kotesovec_, Feb 17 2021 *)
%Y A341325 Cf. A242759, A242760, A341324.
%K A341325 nonn,cons
%O A341325 0,1
%A A341325 _Koksal Karakus_, Feb 08 2021
%E A341325 More digits from _Alois P. Heinz_, Feb 16 2021