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!)
A024183 Second elementary symmetric function of 3,4,...,n+3. 4

%I #35 Sep 08 2022 08:44:48

%S 12,47,119,245,445,742,1162,1734,2490,3465,4697,6227,8099,10360,13060,

%T 16252,19992,24339,29355,35105,41657,49082,57454,66850,77350,89037,

%U 101997,116319,132095,149420,168392,189112,211684,236215,262815,291597,322677

%N Second elementary symmetric function of 3,4,...,n+3.

%H Ivan Neretin, <a href="/A024183/b024183.txt">Table of n, a(n) for n = 1..10000</a>

%H <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (5,-10,10,-5,1).

%F a(n) = n*(n+1)*(3*n^2 + 35*n + 106)/24.

%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-2) = f(n,n-2,3), for n >= 3. - _Milan Janjic_, Dec 20 2008

%F a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). - _Colin Barker_, Aug 15 2014

%F G.f.: -x*(4*x^2-13*x+12) / (x-1)^5. - _Colin Barker_, Aug 15 2014

%p seq(n*(n+1)*(3*n^2+35*n+106)/24,n=1..40); # _Muniru A Asiru_, May 19 2018

%t f[k_] := k + 2; t[n_] := Table[f[k], {k, 1, n}]

%t a[n_] := SymmetricPolynomial[2, t[n]]

%t Table[a[n], {n, 2, 30}] (* A024183 *)

%t (* _Clark Kimberling_, Dec 31 2011 *)

%t LinearRecurrence[{5, -10, 10, -5, 1}, {12, 47, 119, 245, 445}, 40] (* _Vincenzo Librandi_, May 03 2018 *)

%o (PARI) Vec(-x*(4*x^2-13*x+12)/(x-1)^5 + O(x^100)) \\ _Colin Barker_, Aug 15 2014

%o (Magma) [n*(n+1)*(3*n^2+35*n+106)/24: n in [1..40]]; // _Vincenzo Librandi_, May 03 2018

%o (GAP) List([1..40],n->n*(n+1)*(3*n^2+35*n+106)/24); # _Muniru A Asiru_, May 19 2018

%K nonn,easy

%O 1,1

%A _Clark Kimberling_

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 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)