Hello,

This may be a dumb question. I am trying to create a exponential distribution of a number of elements X distributed over y buckets rounded off to the nearest whole number.

So for example if x=2044 and y=9,

a nice distribution would look something like this:

bucket#1 =4
bucket#2 =8
bucket#3 =16
bucket#4 =32
bucket#5 =64
bucket#6 =128
bucket#7 =256
bucket#8 =512
bucket#9 =1024

Total of elements=2044

how can I easily acomplish this for let's say 1100 elements and 9 buckets. I feel like it's an easy formula but then there's the GROWTH function that can do it but I can't figure it out. Thanks!