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!)
A144639 Column 4 of triangle in A144633. 2

%I #14 Mar 19 2014 11:28:13

%S 0,0,0,0,1,-10,85,-700,5565,-39270,163625,2002000,-80455375,

%T 1796144350,-33225267075,532997965500,-6863056074875,39757008541250,

%U 1589961504756625,-87655679826715000,2971557080832965625,-82299265240798856250,1913986621864144953125

%N Column 4 of triangle in A144633.

%H Alois P. Heinz, <a href="/A144639/b144639.txt">Table of n, a(n) for n = 0..100</a>

%F E.g.f.: B(x)^4/24 where B(x) is e.g.f. for A144636. - _Vladeta Jovovic_, Jan 24 2009

%p A:= proc(n, k) option remember; if n=k then 1 elif k<n or n<1 then 0 else A(n-1, k-1) +(k-1) *A(n-1, k-2) +(k-1) *(k-2) *A(n-1, k-3)/2 fi end: M:= proc(n) option remember; Matrix(n+1, (i, j)-> A(i-1, j-1))^(-1) end: a:= n-> M(n+4)[5, n+1]: seq(a(n), n=0..25); # _Alois P. Heinz_, Oct 25 2009

%t max = 30; t[n_, n_] = 1; t[n_ /; n >= 0, k_] /; (0 <= k <= 3*n) := t[n, k] = t[n-1, k-1]+(k-1)*t[n-1, k-2]+(1/2)*(k-1)*(k-2)*t[n-1, k-3]; t[_, _] = 0; A144633 = Table[t[n, k], {n, 0, max}, {k, 0, max}] // Inverse // Transpose; a[n_] := A144633[[n+1, 5]]; Table[a[n], {n, 0, max}] (* _Jean-François Alcover_, Mar 19 2014 *)

%K sign

%O 0,6

%A _N. J. A. Sloane_, Jan 23 2009

%E More terms from _Alois P. Heinz_, Oct 25 2009

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 17:29 EDT 2024. Contains 371962 sequences. (Running on oeis4.)