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.

A247562 A101402(10^n).

Original entry on oeis.org

1, 4, 36, 355, 3549, 35495, 354942, 3549413, 35494123, 354941215, 3549412151, 35494121507, 354941215066, 3549412150655, 35494121506548, 354941215065477, 3549412150654758, 35494121506547571, 354941215065475694, 3549412150654756948
Offset: 0

Views

Author

Keywords

Comments

if c = 0.3549412150654756947265447261312365125932387..., then a(n) =~ floor(c*10^n). This holds to n^7 +- 2.

Crossrefs

Cf. A101402.

Programs

  • Mathematica
    a[0] = 0; a[1] = 1; a[n_] := a[n] = Block[{p = 2^(Ceiling[Log[2, n]] - 1)}, a[p] + a[n - 1 - p]];
    Table[a[10^n],{n,0,20}]