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!)
A193932 E.g.f. A(x) = exp(x+x^2+x^3+x^4+x^5+x^6). 2
1, 1, 3, 13, 73, 501, 4051, 32593, 313713, 3326473, 38377891, 476464341, 6299024953, 87715975933, 1314012177843, 20776583119321, 345267365639521, 6009277853650833, 109262845394221123, 2073062512187103133, 41084832105634595241, 845645768972241105541 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n)=n!*sum(k=1..n, sum(i=0..(n-k)/6, (-1)^i*binomial(k,k-i)*binomial(n-6*i-1,k-1))/k!), n>0, a(0)=1.
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-j)*binomial(n-1, j-1)*j!, j=1..min(n, 6)))
end:
seq(a(n), n=0..23); # Alois P. Heinz, Sep 29 2017
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Exp[Total[x^Range[6]]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Oct 12 2015 *)
PROG
(Maxima)
a(n):=if n=0 then 1 else n!*sum(sum((-1)^i*binomial(k, k-i)*binomial(n-6*i-1, k-1), i, 0, (n-k)/6)/k!, k, 1, n);
CROSSREFS
Sequence in context: A193931 A367757 A293197 * A193933 A306623 A306624
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Aug 09 2011
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 24 14:13 EDT 2024. Contains 371960 sequences. (Running on oeis4.)