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.

A237347 First differences of A078633.

Original entry on oeis.org

3, 3, 2, 3, 2, 3, 2, 2, 3, 2, 2, 3, 2, 2, 2, 3, 2, 2, 2, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 18 2014

Keywords

Comments

a(n) = A078633(n+1) - A078633(n);
2 <= a(n) <= 3;
a(A049068(n)) = 2; a(A002620(n)) = 3;
A237347(n) = abs(A167752(n)) + 2.

Programs

  • Haskell
    a237347 n = a237347_list !! (n-1)
    a237347_list = zipWith (-) (tail a078633_list) a078633_list