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.

A239324 Partial sums of A090431.

Original entry on oeis.org

0, -1, -2, -4, -7, -4, -2, -3, -5, -1, -11, -13, -20, -21, -23, -28, -29, -35, -33, -36, -42, -49, -61, -67, -78, -87, -81, -76, -74, -73, -75, -81, -81, -86, -92, -98, -96, -99, -98, -100, -107, -119, -123, -127, -132, -140, -149, -142, -137, -135, -143
Offset: 0

Views

Author

Reinhard Zumkeller, Mar 16 2014

Keywords

Comments

a(n+1) = a(n) + A090431(n).

Crossrefs

base

Programs

  • Haskell
    a239324 n = a239324_list !! (n-1)
    a239324_list = scanl (+) 0 a090431_list