A055777 a(n) = 3^(3^n).
3, 27, 19683, 7625597484987, 443426488243037769948249630619149892803
Offset: 0
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 0..6
Programs
-
Mathematica
NestList[#^3&,3,5] (* Harvey P. Dale, Mar 28 2019 *)
-
Python
print([3**(3**n) for n in range(5)]) # Michael S. Branicky, Mar 27 2021
Formula
a(n) = a(n-1)^3.
Sum_{n>=0} 1/a(n) = A383817. - Amiram Eldar, May 16 2025
Comments