login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A001702 Generalized Stirling numbers.
(Formerly M5148 N2234)
2

%I M5148 N2234 #63 Sep 08 2022 08:44:29

%S 1,24,154,580,1665,4025,8624,16884,30810,53130,87450,138424,211939,

%T 315315,457520,649400,903924,1236444,1664970,2210460,2897125,3752749,

%U 4809024,6101900,7671950,9564750,11831274,14528304,17718855,21472615,25866400,30984624

%N Generalized Stirling numbers.

%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A001702/b001702.txt">Table of n, a(n) for n = 1..1000</a>

%H D. S. Mitrinovic and R. S. Mitrinovic, <a href="http://pefmath2.etf.rs/files/47/77.pdf">Tableaux d'une classe de nombres reliés aux nombres de Stirling</a>, Univ. Beograd. Publ. Elektrotehn. Fak. Ser. Mat. Fiz., No. 77 (1962), 1-77.

%H D. S. Mitrinovic and R. S. Mitrinovic, <a href="https://www.jstor.org/stable/43667130">Tableaux d'une classe de nombres reliés aux nombres de Stirling</a>, Univ. Beograd. Publ. Elektrotehn. Fak. Ser. Mat. Fiz., No. 77 (1962), 1-77 [jstor stable version].

%H Robert E. Moritz, <a href="/A001701/a001701.pdf">On the sum of products of n consecutive integers</a>, Univ. Washington Publications in Math., 1 (No. 3, 1926), 44-49 [Annotated scanned copy]

%H Simon Plouffe, <a href="https://arxiv.org/abs/0911.4975">Approximations de séries génératrices et quelques conjectures</a>, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009.

%H Simon Plouffe, <a href="/A000051/a000051_2.pdf">1031 Generating Functions</a>, Appendix to Thesis, Montreal, 1992

%H <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (7,-21,35,-35,21,-7,1).

%F a(n) = (1/48)*(n-1)*n*(n+1)*(n+4)*(n^2+7n+14), n > 1.

%F G.f.: x + x^2*(x-4)*(x^2-2*x+6)/(x-1)^7. - _Simon Plouffe_ in his 1992 dissertation

%F If we define f(n,i,a) = Sum_{k=0..n-i} binomial(n,k)*Stirling1(n-k,i)*Product_{j=0..k-1} (-a - j), then a(n-1) = -f(n,n-3,2), for n >= 3. - _Milan Janjic_, Dec 20 2008

%F a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7). - _Colin Barker_, Jul 08 2020

%p A001702 := proc(n)

%p if n = 1 then

%p 1 ;

%p else

%p (n-1)*n*(n+1)*(n+4)*(n^2+7*n+14)/48 ;

%p end if;

%p end proc: # _R. J. Mathar_, Sep 23 2016

%t Join[{1}, Table[(n-1) n (n+1) (n+4) (n^2 + 7 n + 14)/48, {n, 2, 100}]] (* _T. D. Noe_, Aug 09 2012 *)

%t CoefficientList[Series[1 +x*(x-4)*(x^2-2*x+6)/(x-1)^7, {x, 0, 100}], x] (* _Stefano Spezia_, Sep 30 2018 *)

%t Join[{1},Table[Coefficient[Product[x + j, {j, 2, k}], x, k - 4], {k, 4, 40}]] (* or *) Join[{1}, LinearRecurrence[{7, -21, 35, -35, 21, -7, 1}, {24, 154, 580, 1665, 4025, 8624, 16884}, 40]] (* _Robert A. Russell_, Oct 04 2018 *)

%o (GAP) Concatenation([1],List([2..35],n->(n-1)*n*(n+1)*(n+4)*(n^2+7*n+14)/48)); # _Muniru A Asiru_, Sep 29 2018

%o (Magma) [1] cat [n*(n^2-1)*(n+4)*(n^2+7*n+14)/48: n in [2..35]]; // _Vincenzo Librandi_, Sep 30 2018

%o (PARI) vector(50, n, if(n==1, 1, (1/48)*(n-1)*n* (n+1)* (n+4)*(n^2 +7*n +14))) \\_G. C. Greubel_, Oct 06 2018

%Y For n > 1, a(n) = A145324(n+2,4).

%K nonn,easy

%O 1,2

%A _N. J. A. Sloane_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)