@nspace Into the weeds of how SDRAM works, but I think the smaller widths are the same exact same sets of cells, just wired into columns/rows/banks differently. Lower column widths have more banks (because the lower bit width means more columns total, but the number of columns per row and rows per bank remains the same, so there's more overall banks).
More banks per chip is actually somewhat desirable because different banks can have accesses interleaved between each other, but you can only access one row of a given bank at once. So a clever SDRAM controller could access twice the number of addresses at once with an x4 chip as an x8 chip, and twice the number of addresses at once with an x8 chip than an x16 chip. ("at once" meaning not incurring the delays required to close one row and open another)
But of course it comes with the cost of needing twice the number of chips to fulfill the necessary data bus width with one access
(n.b. this is with my shaky knowledge of how SDRAM works, I'm not an expert lol)