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!)
A245414 Number of endofunctions on [n] such that no element has a preimage of cardinality ten. 2
1, 1, 4, 27, 256, 3125, 46656, 823543, 16777216, 387420489, 9999999990, 285311669401, 8916100352424, 302875100167549, 11112006425304162, 437893866154577295, 18446742614251551616, 827240173137280043281, 39346402580883043716420, 1978419307503657602437003 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * [x^n] (exp(x)-x^10/10!)^n.
MAPLE
b:= proc(n, i) option remember; `if`(n=0 and i=0, 1,
`if`(i<1, 0, add(`if`(j=10, 0, b(n-j, i-1)*
binomial(n, j)), j=0..n)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..25);
MATHEMATICA
Table[n!*SeriesCoefficient[(E^x-x^10/10!)^n, {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jul 23 2014 *)
CROSSREFS
Column k=10 of A245405.
Sequence in context: A067040 A070271 A324809 * A177885 A000312 A086783
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 21 2014
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)