[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A341863
Decimal expansion of (4/1)^(9/4)^...^((n+1)^2/n^2)^... .
0
4, 4, 1, 7, 6, 3, 4, 7, 7, 9, 0, 3, 6, 2, 3, 0, 4, 3, 7, 4, 1, 9, 0, 4, 6, 0, 0, 9, 0, 6, 3, 5, 4, 7, 7, 6, 6, 9, 9, 9, 2, 7, 5, 4, 3, 3, 0, 4, 5, 8, 7, 1, 3, 3, 1, 7, 6, 0, 0, 6, 3, 4, 0, 3, 2, 3, 5, 9, 9, 2, 2, 6, 9, 2, 8, 5, 9, 1, 9, 4, 2, 8, 3, 3, 3, 4, 7, 7, 4, 1, 1, 5, 6, 9, 8, 3, 7, 2, 1, 8, 7, 3, 1, 7, 3
OFFSET
11,1
EXAMPLE
44176347790.3623043741904600906354776699927543304587133176...
MATHEMATICA
digits = 120; difs = 1; sold = 0; n = 10; While[Abs[difs] > 10^(-digits - 5), s = N[(n + 1)^2/n^2, 1000]; Do[s = ((m + 1)^2/m^2)^s, {m, n - 1, 1, -1}]; difs = s - sold; sold = s; n++]; RealDigits[s, 10, 120][[1]] (* Vaclav Kotesovec, Mar 03 2021 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Koksal Karakus, Feb 21 2021
EXTENSIONS
More digits from Alois P. Heinz, Mar 02 2021
STATUS
approved