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.

Showing 1-1 of 1 results.

A319761 a(n) = Product_{i=1..n} i^s(n,i), where s is an unsigned Stirling number of the 1st kind.

Original entry on oeis.org

1, 1, 2, 24, 5971968, 295334114577121602242226794587320483840
Offset: 0

Views

Author

Jeffrey Shallit, Sep 27 2018

Keywords

Examples

			For n = 4 we have a(4) = 1^6*2^11*3^6*4^1 = 5971968.
		

Crossrefs

Programs

  • Maple
    f:= n -> mul(i^abs(Stirling1(n,i)),i=1..n):
    map(f, [$0..6]); # Robert Israel, Sep 27 2018
  • Mathematica
    A319761[n_] := Product[i^Abs[StirlingS1[n, i]], {i, n}];
    Array[A319761, 7, 0] (* Paolo Xausa, Jul 10 2024 *)
  • PARI
    a(n) = prod(i=1, n, i^abs(stirling(n, i, 1))); \\ Michel Marcus, Sep 27 2018
Showing 1-1 of 1 results.