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.

A255878 First differences of A256188.

Original entry on oeis.org

1, -1, 1, 2, 1, -4, 1, 1, 4, 1, 1, -8, 1, 1, 1, 7, 1, 1, 1, -13, 1, 1, 1, 1, 11, 1, 1, 1, 1, -19, 1, 1, 1, 1, 1, 16, 1, 1, 1, 1, 1, -26, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, -34, 1, 1, 1, 1, 1, 1, 1, 29, 1, 1, 1, 1, 1, 1, 1, -43, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 26 2015

Keywords

Crossrefs

Programs

  • Haskell
    a255878 n = a255878_list !! (n-1)
    a255878_list = zipWith (-) (tail a256188_list) a256188_list