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.

A014784 Triangle of numbers associated with Genocchi numbers.

Original entry on oeis.org

1, 1, 1, 2, 3, 2, 7, 12, 12, 7, 38, 69, 81, 69, 38, 295, 552, 702, 702, 552, 295, 3098, 5901, 7857, 8559, 7857, 5901, 3098, 42271, 81444, 111618, 128034, 128034, 111618, 81444, 42271, 726734, 1411197, 1971945, 2339631, 2467665, 2339631, 1971945
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A035003.
Columns include A000366 and A102078. Row sums are in A000366.

Programs

  • Mathematica
    a[ 1, 1 ]=1; a[ n_, k_ ] := 0 /; (k>n || k<=0); a[ n_, 1 ]=Sum[ a[ n-1, i ], {i, 1, n-1} ] a[ n_, k_ ] := a[ n, k ]=2a[ n, k-1 ]-a[ n, k-2 ]-a[ n-1, k-1 ]-a[ n-1, k-2 ]; Flatten[ Table[ a[ n, i ], {n, 1, 10}, {i, 1, n} ] ]

Extensions

More terms from Erich Friedman.