Array: What is this value based on?

Use the php function unserialize() on that string and you will get a proper array.

$cats = get_cats_from_database();
$cats = unserialize($cats);
        //now $cats is an array like Array(0 => 20, 1 => 343 );