A230874 a(1)=1; thereafter a(n) = 2^a(ceiling(n/2)).
1, 2, 4, 4, 16, 16, 16, 16, 65536, 65536, 65536, 65536, 65536, 65536, 65536, 65536
Offset: 1
Keywords
Formula
For n>1, a(n) = a tower of 2's of height ceiling(log_2(n)). E.g. a(15) = 2^2^2^2.
Comments