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.

A256541 First differences of A166133.

Original entry on oeis.org

1, 2, -1, 5, -1, -1, -1, 7, -1, -1, -1, 7, -1, -1, -1, 8, -1, -1, -1, -1, 7, -1, -1, 47, -41, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 133, -121, -1, -1
Offset: 1

Views

Author

Reinhard Zumkeller, Apr 01 2015

Keywords

Comments

a(n) != 0; abs(a(A256543(n))) = 1.

Crossrefs

Programs

  • Haskell
    a256541 n = a256541_list !! (n-1)
    a256541_list = zipWith (-) (tail a166133_list) a166133_list