For small $\lambda$ a simulation in python shows that the leading
digits of Poisson distributed integers $n$ do not satisfy Benford's law.
A lot of $n$ are zero thus having a zero as leading digit. Benford's law does not apply to that case.
For $\lambda=1$ the leading digit $2$ is reasonably well matched with Poisson, and for $\lambda=2$ the leading digit $4\,,$ but this is as good as it gets.

from numpy import random
import matplotlib.pyplot as plt
def get_leading_digit( s ):
l = len(s)
for i in range(0,l):
if s[i] != '0' and s[i] != '.' and s[i] != '-':
return( int(s[i]) )
return( 0 )
x = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
benf = [ 0, 301, 176, 125, 97, 79, 67, 58, 51, 46 ]
sim = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
ec = ['blue','red','black']
for lam in [1,2]:
p = random.poisson(lam,1000)
for i in range(len(p)):
d = get_leading_digit(str(p[i]))
sim[d] += 1
if( d == 0 ):
print( p[i], d )
print( sim )
plt.bar( x, sim, fill=False, label=r"$\lambda = ${:3.1f}".format(lam), edgecolor=ec[lam] )
plt.bar( x, benf, fill=False, label="Benford", edgecolor='blue' )
plt.xticks(x)
plt.legend()
plt.show()
pythonand simulate the Poisson variables (for any $\lambda$ you like) and see if they satisfy Benford's law. Here is described how to do it. It could hardly be simpler. – Kurt G. Aug 29 '23 at 07:43