A001701
Generalized Stirling numbers.
Original entry on oeis.org
1, 6, 26, 71, 155, 295, 511, 826, 1266, 1860, 2640, 3641, 4901, 6461, 8365, 10660, 13396, 16626, 20406, 24795, 29855, 35651, 42251, 49726, 58150, 67600, 78156, 89901, 102921, 117305, 133145, 150536, 169576, 190366, 213010, 237615, 264291, 293151, 324311
Offset: 1
- 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).
- T. D. Noe, Table of n, a(n) for n = 1..1000
- Alvaro Carbonero, Beth Anne Castellano, Gary Gordon, Charles Kulick, Karie Schmitz, and Brittany Shelton, Permutations of point sets in R_d, arXiv:2106.14140 [math.CO], 2021.
- D. S. Mitrinovic and M. S. Mitrinovic, Tableaux d'une classe de nombres reliés aux nombres de Stirling, Univ. Beograd. Pubi. Elektrotehn. Fak. Ser. Mat. Fiz. 77 (1962).
- Robert E. Moritz, On the sum of products of n consecutive integers, Univ. Washington Publications in Math., 1 (No. 3, 1926), 44-49 [Annotated scanned copy]
- Simon Plouffe, Approximations de séries génératrices et quelques conjectures, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009.
- Simon Plouffe, 1031 Generating Functions, Appendix to Thesis, Montreal, 1992
- Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
-
Concatenation([1],List([2..40],n->n*(n-1)*(3*n^2+17*n+26)/24)); # Muniru A Asiru, Sep 29 2018
-
[1] cat [n*(n-1)*(3*n^2 + 17*n + 26)/24: n in [2..40]]; // Vincenzo Librandi, Sep 30 2018
-
A001701 := proc(n)
if n = 1 then
1;
else
n*(n-1)*(3*n^2+17*n+26)/24 ;
end if;
end proc: # R. J. Mathar, Sep 23 2016
-
f[k_] := k + 1; t[n_] := Table[f[k], {k, 1, n}]; a[n_] := SymmetricPolynomial[2, t[n]]; Join[{1}, Table[a[n], {n, 2, 30}]] (* Clark Kimberling, Dec 31 2011 *)
Join[{1}, Table[n (n - 1) (3 n^2 + 17 n + 26) / 24, {n, 2, 40}]] (* Vincenzo Librandi, Sep 30 2018 *)
CoefficientList[Series[(-1 - x - 6 x^2 + 9 x^3 - 5 x^4 + x^5)/(-1 + x)^5, {x, 0, 30}], x] (* Stefano Spezia, Sep 30 2018 *)
Prepend[Table[Coefficient[Product[x+j, {j,2,k}], x, k-3], {k,3,40}],1] (* or *) Prepend[LinearRecurrence[{5, -10, 10, -5, 1}, {6, 26, 71, 155, 295}, 40],1] (*Robert A. Russell, Oct 04 2018 *)
-
Vec(x*(-1-x-6*x^2+9*x^3-5*x^4+x^5)/(-1+x)^5+O(x^30)) \\ Stefano Spezia, Sep 30 2018
A008296
Triangle of Lehmer-Comtet numbers of the first kind.
Original entry on oeis.org
1, 1, 1, -1, 3, 1, 2, -1, 6, 1, -6, 0, 5, 10, 1, 24, 4, -15, 25, 15, 1, -120, -28, 49, -35, 70, 21, 1, 720, 188, -196, 49, 0, 154, 28, 1, -5040, -1368, 944, 0, -231, 252, 294, 36, 1, 40320, 11016, -5340, -820, 1365, -987, 1050, 510, 45, 1, -362880, -98208, 34716, 9020, -7645, 3003, -1617, 2970, 825, 55, 1, 3628800
Offset: 1
Triangle begins:
1;
1, 1;
-1, 3, 1;
2, -1, 6, 1;
-6, 0, 5, 10, 1;
24, 4, -15, 25, 15, 1;
...
- L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 139.
- Alois P. Heinz, Rows n = 1..141, flattened
- H. W. Gould, A Set of Polynomials Associated with the Higher Derivatives of y = x^x, Rocky Mountain J. Math. Volume 26, Number 2 (1996), 615-625.
- Tian-Xiao He and Yuanziyi Zhang, Centralizers of the Riordan Group, arXiv:2105.07262 [math.CO], 2021.
- D. H. Lehmer, Numbers Associated with Stirling Numbers and x^x, Rocky Mountain J. Math., 15(2) 1985, pp. 461-475.
-
for n from 1 to 20 do for k from 1 to n do
printf(`%d,`, add(binomial(l,k)*k^(l-k)*Stirling1(n,l), l=k..n)) od: od:
# second program:
A008296 := proc(n, k) option remember; if k=1 and n>1 then (-1)^n*(n-2)! elif n=k then 1 else (n-1)*procname(n-2, k-1) + (k-n+1)*procname(n-1, k) + procname(n-1, k-1) end if end proc:
seq(print(seq(A008296(n, k), k=1..n)), n=1..7); # Mélika Tebni, Aug 22 2021
-
a[1, 1] = a[2, 1] = 1; a[n_, 1] = (-1)^n (n-2)!;
a[n_, n_] = 1; a[n_, k_] := a[n, k] = (n-1) a[n-2, k-1] + a[n-1, k-1] + (k-n+1) a[n-1,k]; Flatten[Table[a[n, k], {n, 1, 12}, {k, 1, n}]][[1 ;; 67]]
(* Jean-François Alcover, Apr 29 2011 *)
-
{T(n, k) = if( k<1 || k>n, 0, n! * polcoeff(((1 + x) * log(1 + x + x * O(x^n)))^k / k!, n))}; /* Michael Somos, Nov 15 2002 */
-
# uses[bell_matrix from A264428]
# Adds 1, 0, 0, 0, ... as column 0 at the left side of the triangle.
bell_matrix(lambda n: (-1)^(n-1)*factorial(n-1) if n>1 else 1, 7) # Peter Luschny, Jan 16 2016
A241765
a(n) = n*(n + 1)*(n + 2)*(3*n + 17)/24.
Original entry on oeis.org
0, 5, 23, 65, 145, 280, 490, 798, 1230, 1815, 2585, 3575, 4823, 6370, 8260, 10540, 13260, 16473, 20235, 24605, 29645, 35420, 41998, 49450, 57850, 67275, 77805, 89523, 102515, 116870, 132680, 150040, 169048, 189805, 212415, 236985, 263625, 292448
Offset: 0
a(7) = 4*0 + 5*1 + 6*3 + 7*6 + 8*10 + 9*15 + 10*21 + 11*28 = 798.
-
/* By first comment: */ k:=4; A000217:=func; [&+[(i+k)*A000217(i): i in [0..n]]: n in [0..40]];
-
A241765:=n->n*(n + 1)*(n + 2)*(3*n + 17)/24; seq(A241765(n), n=0..40); # Wesley Ivan Hurt, May 09 2014
-
Table[n (n + 1) (n + 2) (3 n + 17)/24, {n, 0, 40}] (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {0, 5, 23, 65, 145}, 40]
CoefficientList[Series[x (5 - 2 x)/(1 - x)^5, {x, 0, 40}], x] (* Vincenzo Librandi, May 09 2014 *)
-
makelist(coeff(taylor(x*(5-2*x)/(1-x)^5, x, 0, n), x, n), n, 0, 40);
-
a(n)=n*(n+1)*(n+2)*(3*n+17)/24 \\ Charles R Greathouse IV, Oct 07 2015
-
x='x+O('x^99); concat(0, Vec(x*(5-2*x)/(1-x)^5)) \\ Altug Alkan, Apr 10 2016
-
[n*(n+1)*(n+2)*(3*n+17)/24 for n in (0..40)]
A193002
Triangle T(n,k)=0 (k odd), T(0,0)=-3, T(n,0)=1 (n > 0) and T(n,k) = T(n-1,k) - T(n-2,k-2).
Original entry on oeis.org
-3, 1, 0, 1, 0, 3, 1, 0, 2, 0, 1, 0, 1, 0, -3, 1, 0, 0, 0, -5, 0, 1, 0, -1, 0, -6, 0, 3, 1, 0, -2, 0, -6, 0, 8, 0, 1, 0, -3, 0, -5, 0, 14, 0, -3, 1, 0, -4, 0, -3, 0, 20, 0, -11, 0, 1, 0, -5, 0, 0, 0, 25, 0, -25, 0, 3, 1, 0, -6
Offset: 0
Triangle begins
-3;
1, 0;
1, 0, 3;
1, 0, 2, 0;
1, 0, 1, 0, -3;
1, 0, 0, 0, -5, 0;
1, 0, -1, 0, -6, 0, 3;
1, 0, -2, 0, -6, 0, 8, 0;
1, 0, -3, 0, -5, 0, 14, 0, -3;
1, 0, -4, 0, -3, 0, 20, 0, -11, 0;
-
BB := proc(m,n) if m=0 then if n= 0 then 3 ; else -1; end if; else (3*m-n)*binomial(n+m-1,n)/m ; end if; end proc:
A193002 := proc(n,k) if type(k,'odd') then 0; else (-1)^(1+k/2)*BB(k/2,n-k) ; end if; end proc:
seq(seq(A193002(n,k),k=0..n),n=0..15) ; # R. J. Mathar, Aug 30 2011
Showing 1-4 of 4 results.
Comments