login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A229741
a(0)=1; thereafter a(n) = n! + Sum_{i=0..n-1} a(i)*a(n-1-i).
2
1, 2, 6, 22, 92, 428, 2208, 12756, 83848, 635392, 5563952, 55743168, 628294912, 7832530400, 106515280064, 1564127939088, 24618706734432, 413015301455040, 7352809011276096, 138398862650413248, 2745596388858393984, 57248882869605962880, 1251574614271552264704, 28625091198273426059136
OFFSET
0,2
LINKS
Stefan Forcey, Aaron Lauve and Frank Sottile, Cofree compositions of coalgebras, Annals of Combinatorics 17 (1) pp. 105-130 March, 2013.
FORMULA
a(n) ~ n! * (1 + 2/n + 8/n^2 + 44/n^3 + 288/n^4 + 2148/n^5 + 17816/n^6 + 161852/n^7 + 1594280/n^8 + 16911940/n^9 + 192361656/n^10), for coefficients see A260879. - Vaclav Kotesovec, Aug 02 2015
MAPLE
a:= proc(n) option remember;
`if`(n=0, 1, n! +add(a(i)*a(n-1-i), i=0..n-1))
end:
seq(a(n), n=0..30); # Alois P. Heinz, Oct 10 2013
MATHEMATICA
a[0] = 1; a[n_] := a[n] = n! + Sum[a[i]*a[n-1-i], {i, 0, n-1}]; Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Mar 07 2014 *)
CROSSREFS
Cf. A260879.
Sequence in context: A074664 A367442 A091768 * A261518 A185349 A317652
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 05 2013
STATUS
approved