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.

A214546 First differences of A140472.

Original entry on oeis.org

1, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 8, -7, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 16, -15, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 8, -7, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0, 32, -31, 1, 0, 2, -1, 1, 0, 4, -3, 1, 0, 2, -1, 1, 0
Offset: 0

Views

Author

Reinhard Zumkeller, Jul 20 2012

Keywords

Comments

a(n) = A140472(n+1) - A140472(n);
a(A016825(n)) = 0; a(A042965(n)) <> 0;
for n > 0: a(A008586(n)) < 0, a(A005843(n)) <= 0, a(A042968(n)) >= 0;
a(A004273(n)) > 0.

Crossrefs

Cf. A093879.

Programs

  • Haskell
    a214546 n = a214546_list !! n
    a214546_list = zipWith (-) (tail a140472_list) a140472_list