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!)
A103996 Recurrence: a(n) = -Sum[i=0..n-1, a(i)*C(n+1,i) ], a(0)=1. 2
1, -1, 2, -9, 74, -955, 17744, -448077, 14751974, -613569711, 31452344252, -1947832408225, 143356013568338, -12366684481981635, 1235842203066704648, -141628365906835323573, 18449654196553852968254 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ (-1)^n * c * n^(2*n+4/3) / (2^n * exp(2*n)), where c = 6.48036478570177035603430551468143689346603193431525230833621534239220049... . - Vaclav Kotesovec, May 06 2015
MATHEMATICA
nmax = 30; aa = ConstantArray[0, nmax+1]; aa[[1]] = 1; Do[aa[[n+1]]=-Sum[Binomial[n+1, k]*aa[[k+1]], {k, 0, n-1}], {n, 1, nmax}]; aa (* Vaclav Kotesovec, May 06 2015 *)
CROSSREFS
Cf. A256006.
Sequence in context: A336955 A084873 A332722 * A015473 A029849 A288581
KEYWORD
sign
AUTHOR
Ralf Stephan, Feb 24 2005
EXTENSIONS
Offset changed to 0 by Vaclav Kotesovec, May 06 2015
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)