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.

A076688 a(n) = 2^(2^n-n-2).

Original entry on oeis.org

1, 8, 1024, 33554432, 72057594037927936, 664613997892457936451903530140172288, 113078212145816597093331040047546785012958969400039613319782796882727665664
Offset: 2

Views

Author

Benoit Cloitre, Oct 25 2002

Keywords

Comments

Integer values of 1/(2-Sum_{i=1..m} i/2^i).
The next term a(9) has 151 digits, and is too large to include in data. - Bernard Schott, Aug 27 2020

Crossrefs

Cf. A036799.
Subsequence of A289585.

Programs

  • Maple
    Data := [seq(2^(2^n-n-2),  n = 2..8)]; \\ Bernard Schott, Aug 26 2020
  • Mathematica
    Table[2^(2^n - n - 2), {n, 2, 8}] (* Amiram Eldar, Aug 27 2020 *)