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.

A255507 First differences of A255437.

Original entry on oeis.org

1, 1, -2, 2, 2, 1, 1, 1, -7, 2, 2, 5, 1, 1, 1, 1, 1, -14, 2, 2, 2, 10, 1, 1, 1, 1, 1, 1, 1, -23, 2, 2, 2, 2, 17, 1, 1, 1, 1, 1, 1, 1, 1, 1, -34, 2, 2, 2, 2, 2, 26, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, -47, 2, 2, 2, 2, 2, 2, 37, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 23 2015

Keywords

Crossrefs

Programs

  • Haskell
    a255507 n = a255507_list !! (n-1)
    a255507_list = zipWith (-) (tail a255437_list) a255437_list