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.

A259603 a(n) = (A259429(n) + A259429(n+1)) / 2.

Original entry on oeis.org

8, 27, 64, 125, 216, 343, 216, 27, 64, 125, 216, 343, 216, 27, 64, 125, 216, 343, 216, 27, 64, 125, 216, 343, 216, 27, 64, 125, 216, 343, 216, 27, 64, 125, 216, 343, 216, 64, 125, 216, 343, 512, 343, 64, 125, 216, 125, 8, 27, 64, 125, 216, 343, 216, 8, 27
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 30 2015

Keywords

Comments

All terms are cubes by definition of A259260.

Crossrefs

Programs

  • Haskell
    a259603 n = a259603_list !! (n-1)
    a259603_list = zipWith ((flip div 2 .) . (+))
                           a259429_list $ tail a259429_list