The raster approach is the way to go. There's some information missing, though: your formula needs to indicate what the units of measurement are. Birds per square meter? Per acre? And what is the distance--meters, feet, yards, etc.?
Let's assume you know the units and know how to manage unit conversions. Then you only need to divide the forest polygons into small cells, obtain the distance of each cell to the forest edge, apply the formula for density, convert the density to a count via multiplication by each cell's area, and sum these counts within each polygon.
In detail, the steps are
Begin with a forest polygon layer:

The yellow features are forested.
Convert the polygons to a raster, assigning a unique identifier to each polygon (for use in the final zonal sum step). The cellsize matters most: small cells provide more precision but require more calculation. When working this out the first time, choose a relatively large cellsize (so that your grid has, say, less than 10^6 cells total).

Features are colored by identifier. This grid has 1.5 million cells.
If you have one study area and the forest polygons are not too sparse, it will be expedient to convert the entire area to a single raster: the following calculations will create a result for each polygon represented by that raster. With sparse polygons, to conserve RAM it might be necessary to use several rasters, each focused on a subregion of your study area. Favor the single-raster approach at first, because your time is more valuable than the computer's time.
Represent the complement ("outside") of the polygons with a Data-NoData indicator. One way is with the SetNull command.

Green values have data; black values are NoData regions.
Compute the Euclidean distance grid relative to the complement. (This, the crucial step, is something difficult and time-consuming to do with a non-raster representation of the data.)

The distance has been hillshaded to aid the eye.

This detail (from the lower right) shows the apparent "ridges" along the medial axes.
Apply the formula to the distance grid using the math toolset, multiplying by the squared cellsize to obtain birds per cell. The formula should be in the form
cellsize^2 * exp(1.89*("Euclidean distance") + 0.34)

Color now represents number of birds per cell.
Of course you will replace cellsize^2 by an actual number and "Euclidean distance" by the name of the previously computed grid. This is the point at which to make any change of distance units, by multiplying the distance grid by whatever factor is needed by your formula.
Compute the zonal sum of the preceding result, using the polygon grid from step 1 for the zones. This creates a table whose rows correspond to the polygons and one of whose columns (for the sum) gives the estimated bird counts.

The polygon ids are in the left column and the zonal sums (bird count estimates) in the right.
If you're worried about the effects of grid origin and cellsize, repeat this calculation while varying those parameters and study the variation in the output. A formula like this is so rough an approximation anyway that considerable variation should be tolerable; given that, and assuming the forest polygons are not extremely tortuous, I would expect the values to be acceptably constant once each polygon has a few dozen cells or more inside it. One reason for this expectation is that the greatest densities (whence the greatest relative contributions to population estimates) are found along the medial axes of the forest polygons and these loci ought to be represented with reasonable accuracy as soon as the polygons are dissected into multiple cells in all directions. (The medial axes will be visually apparent as ridges in the Euclidean distance grid computed in Step 3.)