OFFSET
1,2
COMMENTS
Is this the same as A183299?
Defining the probability for integer value x in a Poisson distribution of integer mean = q>0 as P(q,x) = e^(-q)*(q^x)/x! then P(n, a(n)+1)- P(n, a(n)) <= P(n, k+1)- P(n, k), for every k > 0.
(Very qualitative) Plot of a Poisson Distribution with mean n. The vertical line above a(n) indicates the place where the distribution has its minimum (negative) discrete difference.
P
^
| *
| * *
| * *
| * *
| * *
| * | *
| * | *
| * | *
| * | *
*-------------+----+----------------------> x
n a(n)
EXAMPLE
With the definition of P(q,x) given in Comments, for instance, if n = 8 then
P(8, a(8)+1)-P(8, a(8)) = P(8,11)-P(8,10) = -0.027071
If we now calculate the discrete difference in a(n)+1 we then obtain
P(8,a(8)+2)-P(8,a(8)+1) = P(8,12)-P(8,11) = -0.0240634
and in a(n)-1
P(8,a(8))-P(8,a(8)-1) = P(8,10)-P(8,9) = -0.0248154
Both previous values are larger than the minimum obtained at a(n).
MATHEMATICA
Table[Position[a=Differences@PDF[PoissonDistribution[n], Range[2^10]], Min@a]//Min, {n, 1, 80}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Andres Cicuttin, Feb 17 2017
STATUS
approved