A001716 Generalized Stirling numbers.
1, 9, 74, 638, 5944, 60216, 662640, 7893840, 101378880, 1397759040, 20606463360, 323626665600, 5395972377600, 95218662067200, 1773217155225600, 34758188233574400, 715437948072960000, 15429680577561600000, 347968129734973440000, 8190600438533990400000
Offset: 0
Keywords
References
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- D. S. Mitrinovic, Sur une classe de nombres reliés aux nombres de Stirling, Comptes rendus de l'Académie des sciences de Paris, t. 252 (1961), 2354-2356. [The numbers R_n^m(a,b) are introduced.]
- D. S. Mitrinovic and R. S. Mitrinovic, Tableaux d'une classe de nombres reliés aux nombres de Stirling, Univ. Beograd. Publ. Elektrotehn. Fak. Ser. Mat. Fiz., No. 77 (1962), 1-77 [jstor stable version].
- D. S. Mitrinovic and M. S. Mitrinovic, Tableaux d'une classe de nombres reliés aux nombres de Stirling, Univ. Beograd. Publ. Elektrotehn. Fak. Ser. Mat. Fiz. No. 77 (1962), 1-77.
- J. Riordan, Letter of 04/11/74.
Crossrefs
Programs
-
Mathematica
f[k_] := k + 3; t[n_] := Table[f[k], {k, 1, n}]; a[n_] := SymmetricPolynomial[n - 1, t[n]]; Table[a[n], {n, 1, 16}] (* Clark Kimberling, Dec 29 2011 *) Rest[CoefficientList[Series[(1-x)^(-4)*Log[1/(1-x)],{x,0,20}],x]*Range[0,20]!] (* Vaclav Kotesovec, Jan 19 2014 *)
-
PARI
R(n, m, a, b) = sum(k=0, n-m, (-1)^k*a^k*b^(n-m-k)*binomial(m+k, k)*stirling(n, m+k, 1)); aa(n) = R(n+1, 1, -4, -1); for(n=0, 19, print1(aa(n), ", ")) \\ Petros Hadjicostas, Jun 23 2020
Formula
a(n) = Sum_{k=0..n} (-1)^(n+k) * (k+1) * 4^k * stirling1(n+1, k+1). - Borislav Crstici (bcrstici(AT)etv.utt.ro), Jan 26 2004
a(n-1) = n!*Sum_{k=0..n-1} (-1)^k*binomial(-4,k)/(n-k) for n >= 1. [Milan Janjic, Dec 14 2008] [Edited by Petros Hadjicostas, Jun 23 2020]
a(n)= n! * [3]h(n), where [k]h(n) denotes the k-th successive summation of the harmonic numbers from 0 to n (with offset 1). [Gary Detlefs, Jan 04 2011]
a(n) = (n+1)! * Sum_{k=0..n} (-1)^k*binomial(-4,k)/(n+1-k). [Gary Detlefs, Jul 16 2011]
a(n) = (n+4)! * Sum_{k=1..n+1} 1/(k+3)/6. [Gary Detlefs, Sep 14 2011]
E.g.f. (for offset 1): 1/(1-x)^4 * log(1/(1-x)). - Vaclav Kotesovec, Jan 19 2014
E.g.f.: (1 + 4*log(1/(1 - x)))/(1 - x)^5. - Ilya Gutkovskiy, Jan 23 2017
From Petros Hadjicostas, Jun 23 2020: (Start)
a(n) = [x] Product_{r=0..n} (x + 4 + r) = (Product_{r=0..n} (4 + r)) * Sum_{i=0..n} 1/(4 + i).
Since a(n) = R_{n+1}^1(a=-4, b=-1) and R_n^m(a,b) = R_{n-1}^{m-1}(a,b) - (a + b*(n-1))*R_{n-1}^m(a,b), we conclude that:
(i) a(n) = (n+3)!/6 + (n+4)*a(n-1) for n >= 1;
(ii) a(n) = (2*n+7)*a(n-1) - (n+3)^2*a(n-2) for n >= 2. (End)
Extensions
More terms from Borislav Crstici (bcrstici(AT)etv.utt.ro), Jan 26 2004
Comments