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.

A248028 a(n) = Sum_{k=0..n} |Stirling1(n, k)|*(n-k)! for n>=0.

Original entry on oeis.org

1, 1, 2, 8, 65, 957, 22512, 773838, 36561289, 2271696241, 179538792358, 17584290721868, 2090031277816649, 296326507395472205, 49400463740287289892, 9566059122999739401954, 2129221864475839211318769, 539805407803681202368358785, 154636541536285163968515043306, 49702496963149041682740769491568
Offset: 0

Views

Author

Paul D. Hanna, Sep 29 2014

Keywords

Comments

Compare to A007840(n) = Sum_{k=0..n} |Stirling1(n, k)|*k!, which equals the number of factorizations of permutations of n letters into ordered cycles.
For n > 1, a(n) is equal to the permanent of the (n-1) X (n-1) matrix in which the (i, j)-entry is equal to delta(i, j) + i, letting delta denote the Kronecker delta function, as illustrated in the below example. - John M. Campbell, Jan 21 2018

Examples

			For example, the (5-1) X (5-1) matrix of the form indicated above is equal to
[2 1 1 1]
[2 3 2 2]
[3 3 4 3]
[4 4 4 5]
and the permanent of the above matrix is equal to 957 = a(5). - _John M. Campbell_, Jan 21 2018
		

Crossrefs

Cf. A008275 (Stirling1 numbers).

Programs

  • Mathematica
    Table[Sum[Abs[StirlingS1[n,k]]*(n-k)!,{k,0,n}],{n,0,20}] (* Vaclav Kotesovec, Sep 30 2014 *)
  • PARI
    {Stirling1(n, k)=if(n==0, 1, n!*polcoeff(binomial(x, n), k))}
    {a(n)=sum(k=0, n, (-1)^(n-k)*Stirling1(n, k)*(n-k)!)}
    for(n=0,20,print1(a(n),", "))

Formula

a(n) ~ ((n-1)!)^2. - Vaclav Kotesovec, Sep 30 2014