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.

A248522 Beatty sequence for 1/(1-exp(-1/3)): a(n) = floor(n/(1-exp(-1/3))).

Original entry on oeis.org

3, 7, 10, 14, 17, 21, 24, 28, 31, 35, 38, 42, 45, 49, 52, 56, 59, 63, 67, 70, 74, 77, 81, 84, 88, 91, 95, 98, 102, 105, 109, 112, 116, 119, 123, 126, 130, 134, 137, 141, 144, 148, 151, 155, 158, 162, 165, 169, 172, 176, 179, 183, 186, 190, 194, 197, 201
Offset: 1

Views

Author

M. F. Hasler, Oct 07 2014

Keywords

Comments

Beatty complement of A247964.

Crossrefs

Programs

  • Mathematica
    Floor[Range[100]/(1 - Exp[-1/3])] (* Paolo Xausa, Jul 16 2024 *)
  • PARI
    a(n)=n\(1-exp(-1/3))