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.

A011967 4th differences of Bell numbers.

Original entry on oeis.org

4, 15, 67, 322, 1657, 9089, 52922, 325869, 2114719, 14418716, 103004851, 769052061, 5987339748, 48506099635, 408157244967, 3561086589202, 32164670915029, 300324194090773, 2894932531218482, 28773297907499129
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Differences[BellB[Range[0, 50]], 4] (* Vladimir Joseph Stephan Orlovsky, May 25 2011 *)
  • Python
    # requires python 3.2 or higher. Otherwise use def'n of accumulate in python docs.
    from itertools import accumulate
    A011967_list, blist, b = [4], [5, 7, 10, 15], 15
    for _ in range(250):
        blist = list(accumulate([b]+blist))
        b = blist[-1]
        A011967_list.append(blist[-5]) # Chai Wah Wu, Sep 20 2014