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.

A262703 First differences of A252001.

Original entry on oeis.org

8, -7, 6, -5, 4, -3, 2, -1, 10, 1, -2, 3, -4, 5, -6, 7, -8, 18, -8, 18, -17, 6, -5, 4, -3, 2, -1, 10, 1, -2, 3, -4, 5, -6, 16, -6, 7, -18, 28, -18, 19, -20, 21, -18, 4, -3, 2, -1, 10, -5, 1, 1, 1, 1, 2, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, -40, 41, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 27 2015

Keywords

Comments

a(n) = A252001(n+1) - A252001(n).

Crossrefs

Programs

  • Haskell
    a262703 n = a262703_list !! (n-1)
    a262703_list = zipWith (-) (tail a252001_list) a252001_list