The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A225591 a(n) = B(n+3) - 6*B(n+2) + 8*B(n+1)*B(n+1) - B(n), where the B(i) are Bell numbers (A000110). 2
0, 16, 160, 1686, 21276, 328498, 6149136, 137105016, 3577543452, 107601726030, 3683660206080, 142035221781402, 6113719409724768, 291540411275223912, 15300594717301253800, 878667035554110785662, 54932693182800769213284 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
B. Chern, P. Diaconis, D. M. Kane, R. C. Rhoades, Closed expressions for averages of set partition statistics, 2013.
MATHEMATICA
Table[BellB[n+3] - 6 BellB[n+2] + 8 BellB[n+1] BellB[n+1] - BellB[n], {n, 0, 20}] (* Vincenzo Librandi, Jul 16 2013 *)
#[[4]]-6#[[3]]+8#[[2]]^2-#[[1]]&/@Partition[BellB[Range[0, 20]], 4, 1] (* Harvey P. Dale, Nov 01 2016 *)
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) = B(n+3) - 6*B(n+2) + 8*B(n+1)*B(n+1) - B(n)
(Magma) [Bell(n+3)-6*Bell(n+2)+8*Bell(n+1)*Bell(n+1)-Bell(n): n in [0..20]]; // Vincenzo Librandi, Jul 16 2013
CROSSREFS
Cf. A005493, A226506 (see Prop 3.1 (i) in Chern et al. link).
Sequence in context: A079767 A079768 A053410 * A197677 A197535 A204297
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 June 1 10:29 EDT 2024. Contains 373016 sequences. (Running on oeis4.)