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.

A259604 (A259542(n) + A259542(n+1)) / 2.

Original entry on oeis.org

3, 6, 10, 15, 10, 6, 10, 15, 21, 28, 36, 45, 36, 28, 36, 45, 55, 36, 21, 28, 36, 45, 36, 28, 36, 45, 55, 66, 78, 91, 78, 66, 78, 91, 105, 78, 55, 66, 78, 91, 78, 66, 78, 91, 105, 120, 136, 153, 120, 78, 91, 105, 91, 78, 66, 78, 105, 120, 136, 153, 171, 153
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 30 2015

Keywords

Comments

All terms are triangular numbers by definition of A259542.

Crossrefs

Programs

  • Haskell
    a259604 n = a259604_list !! (n-1)
    a259604_list = zipWith ((flip div 2 .) . (+))
                           a259542_list $ tail a259542_list