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!)
A213170 E.g.f.: exp(2*(1-exp(x))). 11
1, -2, 2, 2, -6, -14, 26, 178, 90, -2382, -9446, 13746, 287194, 998578, -3687782, -56264782, -208446118, 1017677490, 17194912282, 79540574642, -317691584294, -7577787031374, -47958156443238, 77252406086578, 4400217218583642, 39757699729476274, 54538870133137690 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Exponential self-convolution of complementary Bell numbers (A000587). - Vladimir Reshetnikov, Oct 07 2016
LINKS
FORMULA
a(n) = Sum_{k=0..n} A048993(n,k)*(-2)^k.
a(n) = Sum_{k=0..n} A000587(k)*A000587(n-k)*binomial(n,k).
G.f.: 1/(1+2*x/(1-x/(1+2*x/(1-2*x/(1+2*x/(1-3*x/(1+2*x/(1-4*x/(1+2*x/(1-...(continued fraction).
Sum_{k=0..n} binomial(n,k)*a(k) = a(n+1)/(-2). - Philippe Deléham, Feb 17 2013
G.f.: 1/Q(0) where Q(k) = 1 + x*(k+1) + x/(1 - 2*x*(k+1)/Q(k+1) ); (continued fraction). - Sergei N. Gladkovskii, Mar 07 2013
Lim sup n->infinity (abs(a(n))/n!)^(1/n) / abs(exp(1/LambertW(-n/2)) / LambertW(-n/2)) = 1. - Vaclav Kotesovec, Aug 04 2014
a(n) = B_n(-2), where B_n(x) is n-th Bell polynomial. - Vladimir Reshetnikov, Oct 20 2015
G.f.: Sum_{j>=0} (-2)^j*x^j / Product_{k=1..j} (1 - k*x). - Ilya Gutkovskiy, Apr 06 2019
MAPLE
b:= proc(n, m) option remember; `if`(n=0,
(-2)^m, m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n, 0):
seq(a(n), n=0..27); # Alois P. Heinz, Jul 17 2022
MATHEMATICA
CoefficientList[Series[E^(2*(1-E^x)), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Aug 04 2014 *)
Table[BellB[n, -2], {n, 0, 20}] (* Vladimir Reshetnikov, Oct 20 2015 *)
PROG
(PARI) x='x+O('x^50); Vec(serlaplace(exp(2*(1-exp(x))))) \\ G. C. Greubel, Nov 15 2017
CROSSREFS
Sequence in context: A248765 A007039 A025248 * A321741 A101416 A371919
KEYWORD
sign,easy
AUTHOR
Philippe Deléham, Feb 14 2013
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)