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!)
A291133 Number of defective parking functions of length n and defect seven. 2
1, 574, 96620, 10358998, 886044810, 66943181150, 4719570364004, 320771944968342, 21454694483447459, 1431385710008667470, 96133394595460111056, 6540549310477955461846, 452777288307033641080180, 31990399760398854681388158, 2311790354938282481939931160 (list; graph; refs; listen; history; text; internal format)
OFFSET
8,2
LINKS
Peter J. Cameron, Daniel Johannsen, Thomas Prellberg, Pascal Schweitzer, Counting Defective Parking Functions, arXiv:0803.0302 [math.CO], 2008.
FORMULA
a(n) ~ (-19*exp(1)/1680 + 116*exp(2)/45 - 1593*exp(3)/40 + 160*exp(4) - 1525*exp(5)/6 + 186*exp(6) - 63*exp(7) + 8*exp(8)) * 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, 7)-S(n, 8):
seq(a(n), n=8..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, 7] - S[n, 8];
Table[a[n], {n, 8, 23}] (* Jean-François Alcover, Feb 24 2019, from Maple *)
CROSSREFS
Column k=7 of A264902.
Sequence in context: A066154 A321052 A369625 * A027456 A158372 A230353
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)