A050924 a(n) = (a(n-1)+1)^(a(n-1)), a(0) = 0.
0, 1, 2, 9, 1000000000
Offset: 0
Links
- J. Awbrey, Riffs and Rotes
Programs
-
Mathematica
NestList[(#+1)^#&,0,4] (* Harvey P. Dale, Aug 13 2020 *)
Extensions
The next term is approximately e * 10^9000000000, with nine-place accuracy. - Franklin T. Adams-Watters, Nov 16 2006
a(5) = 2.7182818270999043223766*10^9000000000 = e * 10^9000000000 * 0.9999999995000000004583. - Jon E. Schoenfield, Nov 24 2013
Comments