login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A136246 a(n) = (1/n!)*Sum_{k=0..n} (-1)^(n-k)*Stirling1(n,k)*A062208(k). 1
1, 1, 32, 2712, 449102, 122886128, 50225389432, 28670796914144, 21789885975738524, 21271115441652577064, 25938193213744579451420, 38638907727108476424404864, 69044758685363149615280762608 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

LINKS

Table of n, a(n) for n=0..12.

FORMULA

a(n) = Sum_{m>=0} binomial(binomial(m,3)+n-1,n)/2^(m+1).

MAPLE

A000629 := proc(n) local k ; sum( k^n/2^k, k=0..infinity) ; end: A062208 := proc(n) option remember ; local a, stir, ni, n1, n2, n3, stir2, i, j, tmp ; a := 0 ; if n = 0 then RETURN(1) ; fi ; stir := combinat[partition](n) ; stir2 := {} ; for i in stir do if nops(i) <= 3 then tmp := i ; while nops(tmp) < 3 do tmp := [op(tmp), 0] ; od: tmp := combinat[permute](tmp) ; for j in tmp do stir2 := stir2 union { j } ; od: fi ; od: for ni in stir2 do n1 := op(1, ni) ; n2 := op(2, ni) ; n3 := op(3, ni) ; a := a+combinat[multinomial](n, n1, n2, n3)*(A000629(3*n1+2*n2+n3)-1/2-2^(3*n1+2*n2+n3)/4)*(-3)^n2*2^n3 ; od: a/(2*6^n) ; end: A136246 := proc(n) local k ; add((-1)^(n-k)*combinat[stirling1](n, k)*A062208(k), k=0..n)/n! ; end: seq(A136246(n), n=0..14) ; - R. J. Mathar, Apr 01 2008

CROSSREFS

Cf. A121316.

Sequence in context: A077143 A198284 A111923 * A220299 A113500 A064018

Adjacent sequences:  A136243 A136244 A136245 * A136247 A136248 A136249

KEYWORD

easy,nonn,changed

AUTHOR

Vladeta Jovovic, Mar 16 2008

EXTENSIONS

More terms from R. J. Mathar, Apr 01 2008

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 23 11:13 EDT 2013. Contains 225587 sequences.