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