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!)
A245413 Number of endofunctions on [n] such that no element has a preimage of cardinality nine. 3
1, 1, 4, 27, 256, 3125, 46656, 823543, 16777216, 387420480, 9999999100, 285311610111, 8916096934416, 302874913851133, 11111996418957812, 437893325100944175, 18446712799609551616, 827238486905202346257, 39346304291930549899764, 1978413388840508514186871 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * [x^n] (exp(x)-x^9/9!)^n.
MAPLE
b:= proc(n, i) option remember; `if`(n=0 and i=0, 1,
`if`(i<1, 0, add(`if`(j=9, 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^9/9!)^n, {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jul 23 2014 *)
CROSSREFS
Column k=9 of A245405.
Sequence in context: A324807 A245412 A324808 * A344658 A226272 A086756
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 May 13 07:22 EDT 2024. Contains 372498 sequences. (Running on oeis4.)