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!)
A291129 Number of defective parking functions of length n and defect three. 2
1, 46, 1442, 41070, 1166083, 34268902, 1059688652, 34723442062, 1208687001381, 44701813604150, 1754724115372438, 72987949807322222, 3210789166789472775, 149073947870611952326, 7289995971215959818304, 374726414201304528649678, 20207920615298454956444905 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,2
LINKS
Peter J. Cameron, Daniel Johannsen, Thomas Prellberg, Pascal Schweitzer, Counting Defective Parking Functions, arXiv:0803.0302 [math.CO], 2008.
FORMULA
a(n) ~ (-13*exp(1)/6 + 14*exp(2) - 15*exp(3) + 4*exp(4)) * 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, 3)-S(n, 4):
seq(a(n), n=4..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, 3] - S[n, 4];
Table[a[n], {n, 4, 23}] (* Jean-François Alcover, Feb 24 2019, from Maple *)
CROSSREFS
Column k=3 of A264902.
Sequence in context: A332858 A264505 A308101 * A115608 A318044 A263190
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 19 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)