OFFSET
1,1
COMMENTS
I do not use brackets for the powers, so do not confuse this with 2^(3/2*4/3*5/4...)
Obtaining 100 digits of precision only requires computing 2^(3/2)^(4/3)^...^(70/69). - Ryan Propper, May 06 2006
EXAMPLE
3.5038099724520171086395374917713267007683... - Jianing Song, Nov 18 2018
MATHEMATICA
k = 1; For[a = 100, a > 1, a--, k = (a/(a-1))^k]; First[RealDigits[N[k, 100]]] (* Ryan Propper, May 06 2006 *)
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Raes Tom (tommy1729(AT)hotmail.com), Feb 25 2005
EXTENSIONS
More terms from Ryan Propper, May 06 2006
STATUS
approved