first, a few (unrelated?) issues with your serialization:
reverse id and partOf – conceptually it’s weird that your page is adam/followers but it’s partOfadam/followers?offset=0; this should probably be reversed, so that the OrderedCollection is adam/followers and the first OrderedCollectionPage is adam/followers?offset=0.
maybe remove next – i don’t know if there are any items in the next page, but it looks like there might not be. i see only 3 items here but a limit of 25. similarly, is the totalItems: 3 for the whole collection or just this page? in any case if the next page is empty then you should omit the next link/property
remove actor – actor is only valid on an Activity. for a normal Object you should be using attributedTo. but for a followers collection page, the server owns it, not the actor.
second, a question:
are those three accounts actually following you on mastodon.social’s side? did they send a Follow and did you send back an Accept? generally, you can’t just claim that anyone is following you; mastodon and other software will use its local followers list that it can verify for itself, not the remote followers list which cannot be verified.