cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A122570 Consider the Thue-Morse sequence (A010060) at each iteration. Read each reversed string as a binary number and convert it to a decimal number.

This page as a plain text file.
%I A122570 #24 Mar 11 2024 08:28:46
%S A122570 0,2,6,150,27030,2523490710,7608434000728254870,
%T A122570 199931532107794273605284333428918544790,
%U A122570 47758914269546354982683078068829456704164423862093743397580034411621752859030
%N A122570 Consider the Thue-Morse sequence (A010060) at each iteration. Read each reversed string as a binary number and convert it to a decimal number.
%e A122570 The first three terms of A010060 are 0, 1, 1, so a(3) = 110_2 = 6.
%t A122570 FromDigits[ #, 2] & /@ NestList[Flatten[ # /. {1 -> {0, 1}, 0 -> {1, 0}}] &, {0}, 8] (* _Robert G. Wilson v_, Sep 25 2006 *)
%Y A122570 Cf. A010060, A014571.
%K A122570 nonn,base,less
%O A122570 1,2
%A A122570 _Roger L. Bagula_, Sep 17 2006
%E A122570 Edited by _Robert G. Wilson v_, Sep 25 2006