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!)
A059373 Second diagonal of triangle in A059370. 1

%I #12 Jun 14 2013 05:21:32

%S 1,-4,8,-16,12,-96,-480,-4672,-45520,-493120,-5798912,-73668608,

%T -1005335552,-14671085568,-228051746304,-3762955404288,

%U -65707303602432,-1210821292674048,-23487031074109440,-478463919131627520,-10214440549929047040,-228069193578011566080

%N Second diagonal of triangle in A059370.

%D L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 171, #34.

%F G.f. A(x) is (R(x))^2 where R(x) is the series reversion of x*hypergeom([1,2],[],x) = sum(n>=1, n!*x^n), see Comtet. - _Mark van Hoeij_, Apr 20 2013

%p series(RootOf(T*hypergeom([1,2],[],T)-x,T)^2,x=0,21); # _Mark van Hoeij_, Apr 20 2013

%t nmax = 23; t[n_, k_] := t[n, k] = Sum[(m+1)!*t[n-m-1, k-1], {m, 0, n-k}]; t[n_, 1] = n!; t[n_, n_] = 1; tnk = Table[t[n, k], {n, 1, nmax}, {k, 1, nmax}]; A059370 = Reverse /@ Inverse[tnk] // DeleteCases[#, 0, 2] & ; Table[A059370[[n, n - 1]], {n, 2, nmax}] (* _Jean-François Alcover_, Jun 14 2013 *)

%o (PARI)

%o N = 66; x = 'x + O('x^N);

%o tf = sum(n=1,N, n!*x^n );

%o gf=serreverse(%)^2;

%o v = Vec(gf)

%o /* _Joerg Arndt_, Apr 20 2013 */

%Y Cf. A059370.

%K sign,easy

%O 2,2

%A _N. J. A. Sloane_, Jan 28 2001

%E Added more terms, _Mark van Hoeij_ and _Joerg Arndt_, Apr 20 2013

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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)