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.

A133026 Concatenation of next n Fermat numbers A000215.

Original entry on oeis.org

3, 517, 257655374294967297
Offset: 1

Views

Author

Omar E. Pol, Nov 09 2007

Keywords

Comments

a(4) has 292 digits and is too large to include.

Crossrefs

Programs

  • Mathematica
    a[n_] := FromDigits[Flatten[IntegerDigits[Table[2^(2^(k - 1)) + 1, {k, n*(n - 1)/2 + 1, n*(n + 1)/2}]]]]; Array[a, 3] (* Amiram Eldar, Jul 09 2025 *)