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!)
A265022 Row sums of the Bell transform of the complementary Bell numbers (A264435). 0
1, 1, 0, -2, -1, 12, 20, -113, -430, 1278, 10821, -10234, -317048, -384915, 10352420, 42836466, -340348905, -3180089128, 8045616512, 219303897655, 301713947470, -14401913182942, -84197219028827, 824481606288554, 11426928115546036, -23133559937561187 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Peter Luschny, The Bell transform
MATHEMATICA
Table[Sum[BellY[n, k, BellB[Range[n] - 1, -1]], {k, 0, n}], {n, 0, 30}] (* Vladimir Reshetnikov, Nov 09 2016 *)
PROG
(Sage) # uses[bell_transform from A264428]
def A265022_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)]
return [sum(bell_transform(n, complementary_bell_numbers)) for n in range(len)]
A265022_list(26)
CROSSREFS
Cf. A000587 (complementary Bell numbers), A264428, A264435, A265023, A265024.
Sequence in context: A164826 A055392 A045873 * A110060 A061081 A007368
KEYWORD
sign
AUTHOR
Peter Luschny, Dec 01 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 March 28 08:02 EDT 2024. Contains 371236 sequences. (Running on oeis4.)