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!)
A291134 Number of defective parking functions of length n and defect eight. 2
1, 1103, 269512, 38643849, 4218834608, 393933602129, 33499946915016, 2693983725947891, 209859823775671984, 16093162912317174422, 1228462028909579534968, 94081283153407041089350, 7269699339591280955315232, 569088494101518607733459806 (list; graph; refs; listen; history; text; internal format)
OFFSET
9,2
LINKS
Peter J. Cameron, Daniel Johannsen, Thomas Prellberg, Pascal Schweitzer, Counting Defective Parking Functions, arXiv:0803.0302 [math.CO], 2008.
FORMULA
a(n) ~ (73*exp(1)/40320 - 296*exp(2)/315 + 405*exp(3)/16 - 2432*exp(4)/15 + 9625*exp(5)/24 - 468*exp(6) + 553*exp(7)/2 - 80*exp(8) + 9*exp(9)) * n^(n-1). - Vaclav Kotesovec, Aug 19 2017
MAPLE
S:= (n, k)-> add(binomial(n, i)*k*(k+i)^(i-1)*(n-k-i)^(n-i), i=0..n-k):
a:= n-> S(n, 8)-S(n, 9):
seq(a(n), n=9..23);
MATHEMATICA
S[n_, k_] := Sum[Binomial[n, i]*k*(k+i)^(i-1)*(n-k-i)^(n-i), {i, 0, n-k}];
a[n_] := S[n, 8] - S[n, 9];
Table[a[n], {n, 9, 23}] (* Jean-François Alcover, Feb 24 2019, from Maple *)
CROSSREFS
Column k=8 of A264902.
Sequence in context: A272754 A060519 A197422 * A233563 A127308 A022055
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 18 2017
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 August 12 23:54 EDT 2024. Contains 375113 sequences. (Running on oeis4.)