A364270 a(n) = 2^^n + 3^^n, where ^^ indicates tetration.
2, 5, 31, 7625597485003
Offset: 0
Examples
For n = 3, a(3) = 2^2^2 + 3^3^3 = 2^4 + 3^27 = 7625597485003.
Programs
-
Mathematica
nmax=3; NestList[2^#&, 1,nmax]+NestList[3^#&,1,nmax] (* Stefano Spezia, Oct 22 2023 *)
Comments