How to change the numbers of categories per page (dashboard)
Edit the file called “YourWordPressFolder/wp-admin/categories.php”
Look for the code below (should start around line 139)
$pagenum = absint( $_GET['pagenum'] );
if ( empty($pagenum) )
$pagenum = 1;
if( !$catsperpage || $catsperpage < 0 )
$catsperpage = 20;
Change $catsperpage from the last row to whatever you wish.
The default value for $catsperpage is 20.