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.

A123724 Partial sums of (-1)^floor(n*2^(1/3)).

Original entry on oeis.org

-1, 0, -1, -2, -1, -2, -1, 0, -1, 0, -1, -2, -1, -2, -1, 0, -1, 0, -1, -2, -1, -2, -1, 0, -1, 0, 1, 0, 1, 0, -1, 0, -1, 0, 1, 0, 1, 0, -1, 0, -1, 0, 1, 0, 1, 0, -1, 0, -1, 0, 1, 0, 1, 2, 1, 2, 1, 0, 1, 0, 1, 2, 1, 2, 1, 0, 1, 0, 1, 2, 1, 2, 1, 0, 1, 0, -1, 0, -1, 0, 1, 0, 1, 0, -1, 0, -1, 0, 1, 0, 1, 0, -1, 0, -1, 0, 1, 0, 1, 0
Offset: 1

Views

Author

T. D. Noe, Oct 11 2006

Keywords

Comments

Remarkably, these partial sums appear to have several periods of length 153008. This sum is not discussed by O'Bryant et al.

Crossrefs

Cf. A123737 (sum for sqrt(2)), A123738 (sum for Pi), A123739 (sum for e).

Programs

  • Mathematica
    Rest[FoldList[Plus,0,(-1)^Floor[2^(1/3)*Range[120]]]]
    Accumulate[(-1)^Floor[Range[100]Surd[2,3]]] (* Harvey P. Dale, Apr 16 2015 *)