go to rtfm.modx.com and lookup "IF" under the plugins - it's basically an if statement for modx tags. I would think that maybe you could find some condition within your pages that you could set your getresources limit on. basically :
[[!getResources? &limit=`[[!if? &subject=`[[+currentpage]]` &operator=`!=` &operand=`1` then=`6` &else=`9`]]` &tpl=`whatever`]]
You'll have to check the syntax - I just winged that off the top of my head & also you'll have to investigate how the pagination figures out what page it's on to get the correct variable for the subject - but I think you should be able to do it like that.
-sean
UPDATE
You could probably do it like this:
[[!getPage?
&element=getResources
&limit=[[!if?
&subject=[[+page]]
&operator=!=
&operand=1
&then=6
&else=9
]]
&tpl=whatever
]]
However getPage also has a limit attribute & I have no idea how it differentiates between it's attributes and it's element attributes. The docs appear to be confusing here.
The +page variable is default as in the docs & it looks like you can change it with the pageVarkey attribute.
Again, off the top of my head, check the syntax and docs before trying.