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.

A151910 First differences of A001682.

Original entry on oeis.org

21, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23, 21, 23, 21, 23, 21, 21, 23
Offset: 1

Views

Author

Harvey P. Dale, Aug 08 2009

Keywords

Comments

a(n) = A001682(n+1) - A001682(n).

Programs

  • Haskell
    a151910 n = a151910_list !! (n-1)
    a151910_list = zipWith (-) (tail a001682_list) a001682_list
    -- Reinhard Zumkeller, Oct 10 2011

Extensions

Offset corrected and initial term added by Reinhard Zumkeller, Oct 10 2011