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.

A074072 Numerators of iterations of Thue-Morse sequence.

Original entry on oeis.org

0, 1, 3, 105, 13515, 1771476585, 3804217000364127435, 140350834813144189858090274002849666665, 23879457134773177491341539034414728352082211931046871698790017205810876429515
Offset: 0

Views

Author

Eric W. Weisstein, Aug 18 2002

Keywords

Examples

			Fractions begin with 0, 1/4, 3/8, 105/256, 13515/32768, 1771476585/4294967296, ...
		

Crossrefs

Cf. A074073 (denominators).

Programs

  • Mathematica
    f[0] = 0; f[n_] := (2^(-2^n))*(2^(2^(n - 1)) - 1)*(2^(2^(n - 1))*f[n - 1] + 1); Numerator@ Array[f, 9, 0] (* Amiram Eldar, Oct 05 2023 *)

Extensions

a(8) from Amiram Eldar, Oct 05 2023