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.

A193926 First differences of A062039.

Original entry on oeis.org

0, 1, 2, -3, 1, 2, 1, 2, 5, -9, 4, 5, 12, -13, 7, -15, 4, 5, 12, -19, 2, 5, 12, -23, 1, 2, 1, 2, 5, 12, 1, 2, 5, 27, -34, 2, 5, 27, -38, 7, 7, 25, -42, 12, 24, -45, 12, 7, 7, 25, -50, 3, 24, 32, -54, 18, 32, -57, 7, 18, 32, -61, 1, 2, 5, 12, 1, 2, 5, 27, 15
Offset: 0

Views

Author

Reinhard Zumkeller, Aug 10 2011

Keywords

Comments

a(n) = A062039(n+1) - A062039(n);
a(A193927(n)) = - A193927(n).

Programs

  • Haskell
    a193926 n = a193926_list !! n
    a193926_list = zipWith (-) (tail a062039_list) a062039_list