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.

A241418 First differences of Arshon's sequence, cf. A099054.

Original entry on oeis.org

1, 1, -2, 2, -1, 1, -2, 1, 1, -1, -1, 2, -2, 1, -1, 2, -1, 1, -2, 1, 1, -1, -1, 1, 1, -2, 1, -1, 2, -1, 1, -2, 2, -1, -1, 2, -2, 1, 1, -1, -1, 1, 1, -2, 2, -1, -1, 2, -2, 1, -1, 2, -1, 1, -2, 1, 1, -1, -1, 1, 1, -2, 1, -1, 2, -1, 1, -2, 2, -1, -1, 1, 1, -2
Offset: 0

Views

Author

Reinhard Zumkeller, Aug 08 2014

Keywords

Comments

Also first differences of A219762;
a(n) = A099054(n+1) - A099054(n) = A219762(n+2) - A219762(n+1).

Crossrefs

Programs

  • Haskell
    a241418 n = a241418_list !! n
    a241418_list = zipWith (-) (tail a099054_list) a099054_list