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.

A248524 Beatty sequence for 1/(1-Pi^(-1/3)).

Original entry on oeis.org

3, 6, 9, 12, 15, 18, 22, 25, 28, 31, 34, 37, 40, 44, 47, 50, 53, 56, 59, 63, 66, 69, 72, 75, 78, 81, 85, 88, 91, 94, 97, 100, 104, 107, 110, 113, 116, 119, 122, 126, 129, 132, 135, 138, 141, 145, 148, 151, 154, 157, 160, 163, 167, 170, 173, 176, 179, 182
Offset: 1

Views

Author

M. F. Hasler, Oct 07 2014

Keywords

Comments

Beatty complement of A240977.

Crossrefs

Cf. A092039 (Pi^(1/3)), A093204 (Pi^(-1/3)), A022844 (Beatty seq. for Pi), A037086 (Beatty seq. for sqrt(Pi)).

Programs

  • Mathematica
    Table[Floor[n/(1 - Pi^(-1/3))], {n, 1, 50}] (* G. C. Greubel, Apr 06 2017 *)
  • PARI
    a(n)=n\(1-Pi^(-1/3))

Formula

a(n) = floor(n/(1-Pi^(-1/3))).