0,1
Next two terms have 15635 and 1024610093 digits respectively. [Corrected by Michael S. Branicky and Sean A. Irvine, Nov 12 2022]
Table of n, a(n) for n=0..3.
C. K. Caldwell, Pepin's Test
a(n) = 3^((F(n)-1)/2) where F(n) is a Fermat number (A000215).
a(1) = 3^((F(1)-1)/2) = 3^((5-1)/2) = 3^2 = 9.
(Python)
def a(n): return 3**(2**(2**n-1))
print([a(n) for n in range(4)]) # Michael S. Branicky, Nov 12 2022
Sequence in context: A060712 A122463 A072005 * A255503 A027896 A116620
Adjacent sequences: A060374 A060375 A060376 * A060378 A060379 A060380
nonn
Jason Earls, Apr 02 2001
Corrected offset, formula and example Harry J. Smith, Jul 04 2009
approved