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!)
A226855 a(n) = n*B(n-1) + n*(n-1)*B(n-2), where the B(i) are Bell numbers (A000110). 1
0, 1, 4, 12, 44, 175, 762, 3605, 18384, 100404, 584070, 3601895, 23451540, 160633681, 1153896772, 8668821600, 67943174000, 554327140739, 4698491153454, 41299244789989, 375844030441560 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
B. Chern, P. Diaconis, D. M. Kane, R. C. Rhoades, Closed expressions for averages of set partition statistics, 2013.
MATHEMATICA
Table[n BellB[n-1] + n (n-1) BellB[n-2], {n, 0, 30}] (* Vincenzo Librandi, Jul 16 2013 *)
PROG
(PARI) B(n) = if (n<=1, return (1), return (sum(i=0, n-1, binomial(n-1, i)*B(n-1-i))))
a(n) = n*B(n-1) + n*(n-1)*B(n-2)
(Magma) [0, 1] cat [n*Bell(n-1)+n*(n-1)*Bell(n-2): n in [2..25]]; // Vincenzo Librandi, Jul 16 2013
CROSSREFS
Cf. A052889 (see Prop 3.1 (ii) in Chern et al. link).
Sequence in context: A000759 A076793 A007860 * A039740 A065143 A098543
KEYWORD
nonn
AUTHOR
Michel Marcus, Jun 19 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 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)