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.

A193245 Ordered Stirling numbers S1(n,k) >= 0.

Original entry on oeis.org

0, 1, 2, 11, 24, 35, 85, 175, 274, 322, 546, 720, 870, 1320, 1624, 1925, 2717, 3731, 5005, 6580, 6769, 8500, 10812, 13068, 13566, 16815, 20615, 22449, 25025, 30107, 35926, 40320, 42550, 50050, 58500, 63273, 67977, 78561, 90335, 103385, 117800, 118124, 133672
Offset: 1

Views

Author

Vaclav Kotesovec, Jan 01 2013

Keywords

Comments

List all Stirling numbers of the first kind >=0, sort and remove duplicates.

Crossrefs

Programs

  • Mathematica
    s1 = Select[Union[Flatten[Table[Table[StirlingS1[n,k], {k,1,100}], {n,1,100}]]], #>=0&]; Table[s1[[j]], {j, 1, 100}]