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.

A247414 First differences of A024431.

Original entry on oeis.org

1, 4, 2, 10, 3, 23, 8, 54, 9, 117, 11, 245, 14, 504, 18, 1026, 21, 2073, 22, 4168, 24, 8360, 25, 16745, 27, 33517, 28, 67062, 29, 134153, 30, 268336, 32, 536704, 33, 1073441, 35, 2146917, 37, 4293871, 39, 8587781, 40, 17175602, 41, 34351245, 45, 68702535, 47
Offset: 0

Views

Author

Reinhard Zumkeller, Sep 16 2014

Keywords

Comments

a(n) = A024431(n+1) - A024431(n) = A115409(n+1,n+1).

Crossrefs

Programs

  • Haskell
    a247414 n = a247414_list !! n
    a247414_list = zipWith (-) (tail a024431_list) a024431_list