Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #19 Sep 21 2022 12:26:44
%S 4,8,16,64,512,8192,524288,268435456,4398046511104,
%T 9223372036854775808,19807040628566084398385987584,
%U 2787593149816327892691964784081045188247552,3291009114642412084309938365114701009965471731267159726697218048
%N a(n+1) = a(n) converted to base 8 from base 4 (written in base 10).
%H John Cerkan, <a href="/A023376/b023376.txt">Table of n, a(n) for n = 1..19</a>
%F a(n) = 2^A061418(n). - _John Cerkan_, Nov 04 2016
%t NestList[FromDigits[IntegerDigits[#,4],8]&,4,15] (* _Harvey P. Dale_, Sep 24 2012 *)
%o (Python)
%o from itertools import islice
%o def A023376_gen(): # generator of terms
%o a = 2
%o while True:
%o yield 1<<a
%o a += a>>1
%o A023376_list = list(islice(A023376_gen(),20)) # _Chai Wah Wu_, Sep 21 2022
%Y Cf. A061418.
%K nonn,base
%O 1,1
%A _David W. Wilson_
%E One more term (a(13)) from _Harvey P. Dale_, Sep 24 2012