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!)
A291130 Number of defective parking functions of length n and defect four. 2
1, 87, 4320, 176843, 6768184, 256059854, 9846223168, 390516805362, 16102219296008, 693122084961945, 31208245366326896, 1470819863019421317, 72549461960461640120, 3743176448672690767272, 201836660477563528892704, 11362223977488695430091444 (list; graph; refs; listen; history; text; internal format)
OFFSET
5,2
LINKS
Peter J. Cameron, Daniel Johannsen, Thomas Prellberg, Pascal Schweitzer, Counting Defective Parking Functions, arXiv:0803.0302 [math.CO], 2008.
FORMULA
a(n) ~ (7*exp(1)/8 - 44*exp(2)/3 + 69*exp(3)/2 - 24*exp(4) + 5*exp(5)) * 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, 4)-S(n, 5):
seq(a(n), n=5..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, 4] - S[n, 5];
Table[a[n], {n, 5, 23}] (* Jean-François Alcover, Feb 24 2019, from Maple *)
CROSSREFS
Column k=4 of A264902.
Sequence in context: A116269 A017803 A017750 * A183040 A072692 A287590
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 June 11 07:26 EDT 2024. Contains 373290 sequences. (Running on oeis4.)