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.

A329912 Engel expansion of exp(Pi/4).

Original entry on oeis.org

1, 1, 6, 7, 9, 17, 57, 283, 326, 791, 10332, 17303, 24977, 85451, 96025, 192273, 337177, 700071, 1394732, 2514757, 73904827, 176943055, 340834596, 663816066, 833303392, 2045234708, 2352089677, 7248164506, 10106625539, 32495772149, 54837573240, 60139816999
Offset: 1

Views

Author

Alois P. Heinz, Nov 23 2019

Keywords

Comments

Cf. A006784 for definition of Engel expansion.

Crossrefs

Cf. A006784, A160510 (decimal expansion), A320428 (continued fraction).

Programs

  • Maple
    Digits:= 250:
    engel:= (r, n)-> `if`(n=0 or r=0, NULL,
            [ceil(1/r), engel(r*ceil(1/r)-1, n-1)][]):
    engel(evalf(exp(Pi/4)), 32);