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.

A193246 Ordered unsigned Stirling numbers |S1(n,k)|.

Original entry on oeis.org

0, 1, 2, 3, 6, 10, 11, 15, 21, 24, 28, 35, 36, 45, 50, 55, 66, 78, 85, 91, 105, 120, 136, 153, 171, 175, 190, 210, 225, 231, 253, 274, 276, 300, 322, 325, 351, 378, 406, 435, 465, 496, 528, 546, 561, 595, 630, 666, 703, 720, 735, 741, 780, 820, 861, 870, 903
Offset: 1

Views

Author

Vaclav Kotesovec, Jan 01 2013

Keywords

Comments

List all unsigned Stirling numbers of the first kind, sort and remove duplicates.
The only numbers below 10^8 that appear in more than one place in the table A130534 are 1, 6, and 120. - Pontus von Brömssen, Jul 20 2024

Crossrefs

Programs

  • Mathematica
    s1 = Union[Flatten[Table[Table[Abs[StirlingS1[n, k]], {k, 1, 100}], {n, 1, 100}]]]; Table[s1[[j]], {j, 1, 100}]