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!)
A201794 E.g.f. satisfies: A(x+1/2*x^2)=x*exp(A(x)). 0
1, 1, 3, 7, 30, 96, 343, 4117, -7200, -117350, 13210791, -301763373, 352971853, 347188696141, -18233731779780, 353928253113421, 23894270709259005, -2906056754069734431, 143316419628690145837, 1110191131102178184400, -954513349352250528933834, 97402126796076086688319561, -3777060544481584990339497402 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = n!*T(n,1), T(n,m) = sum(k=1..n-m, T(n-m,k)*m^k/k! - 2^(k+m-n-1)*binomial(k+m-1,n-k-m+1)*T(k+m-1,m)), n>m, with T(n,n)=1.
PROG
(Maxima)
array(BB, 100, 100);
fillarray (BB, makelist (-1, i, 1, 1000));
T(n, m):=if BB[n, m]=-1 then BB[n, m]:(if n=m then 1 else sum(T(n-m, k)*m^k/k!-2^(k+m-n-1)*binomial(k+m-1, n-k-m+1)*T(k+m-1, m), k, 1, n-m)) else BB[n, m];
makelist(n!*T(n, 1), n, 1, 27);
CROSSREFS
Sequence in context: A227077 A136934 A369083 * A188229 A277739 A098644
KEYWORD
sign
AUTHOR
Vladimir Kruchinin, Dec 05 2011
STATUS
approved

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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)