A011764 a(n) = 3^(2^n) (or: write in base 3, read in base 9).
3, 9, 81, 6561, 43046721, 1853020188851841, 3433683820292512484657849089281, 11790184577738583171520872861412518665678211592275841109096961
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..11
Programs
-
Magma
[3^(2^n): n in [0..8]]; // Vincenzo Librandi, Sep 15 2011
-
Mathematica
3^(2^Range[0,10]) (* Harvey P. Dale, Oct 14 2012 *)
-
PARI
a(n)=3^2^n \\ Charles R Greathouse IV, Oct 03 2012
-
Python
def A011764(n): return 3**(1<
Chai Wah Wu, Oct 09 2024
Formula
a(0) = 3 and a(n+1) = a(n)^2. - Benoit Jubin, Jun 27 2009
Sum_{n>=0} 1/a(n) = A078885. - Amiram Eldar, Nov 09 2020
Product_{n>=0} (1 + 1/a(n)) = 3/2. - Amiram Eldar, Jan 29 2021
Comments