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!)
A265023 Second order complementary Bell numbers. 2
1, -1, 2, -4, 9, -22, 54, -139, 372, -948, 2607, -7388, 16058, -58957, 174854, 210448, 4345025, -2008714, -165872030, -1756557123, -6144936528, 60244093040, 1164910003567, 8228177887688, -10562519450714, -967088274083133, -11322641425582454, -37483806372774364 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MATHEMATICA
nmax = 27;
A = Exp[x] + O[x]^(nmax - 1);
B = Exp[1 - Integrate[A, x]]/E;
c = Exp[1 - Integrate[B, x]]/E;
CoefficientList[c, x] Range[0, nmax]! (* Jean-François Alcover, Jul 12 2019, from PARI *)
PROG
(Sage) # uses[bell_transform from A264428]
def A265023_list(len):
uno = [1]*len
complementary_bell_numbers = [sum((-1)^n*b for (n, b) in enumerate (bell_transform(n, uno))) for n in range(len)]
complementary_bell_numbers2 = [sum((-1)^n*b for (n, b) in enumerate (bell_transform(n, complementary_bell_numbers))) for n in range(len)]
return complementary_bell_numbers2
print(A265023_list(28))
(PARI)
\\ For n>28 precision has to be adapted as needed!
A = exp('x + O('x^33) );
B = exp(1 - intformal(A) )/exp(1);
C = exp(1 - intformal(B) )/exp(1);
round(Vec(serlaplace(C)))
CROSSREFS
Cf. A000587 (complementary Bell numbers), A264428.
Sequence in context: A048211 A098719 A274289 * A343291 A290996 A198520
KEYWORD
sign
AUTHOR
Peter Luschny, Dec 03 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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)