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.

Showing 1-2 of 2 results.

A091463 a(n) is the smallest j such that 1/1 + 1/4 + 1/7 + ... + 1/j exceeds n.

Original entry on oeis.org

4, 52, 1060, 21301, 427873, 8594032, 172615738, 3467079760, 69638158519
Offset: 1

Views

Author

Robert G. Wilson v, Jan 12 2004

Keywords

Crossrefs

Programs

  • Mathematica
    s = 0; k = 1; Do[ While[s = N[s + 1/k, 24]; s <= n, k += 3]; Print[k]; k += 3, {n, 1, 7}]

Formula

The next term is approximately the previous term * e^3.

Extensions

Name edited by Jon E. Schoenfield, Dec 20 2019
a(8)-a(9) from Hugo Pfoertner, Dec 27 2019

A091464 a(n) is the smallest j such that 1/2 + 1/5 + 1/8 + ... + 1/j exceeds n.

Original entry on oeis.org

17, 323, 6506, 130664, 2624438, 52713275, 1058774426, 21266052797, 427140088670
Offset: 1

Views

Author

Robert G. Wilson v, Jan 12 2004

Keywords

Crossrefs

Programs

  • Mathematica
    s = 0; k = 2; Do[ While[s = N[s + 1/k, 24]; s <= n, k += 3]; Print[k]; k += 3, {n, 1, 7}]

Formula

The next term is approximately the previous term * e^3.

Extensions

a(8)-a(9) from Hugo Pfoertner, Dec 26 2019
Showing 1-2 of 2 results.