is_page “range” for if statement?

I think you should create range as variable and set it to is_page() something like this should work.

$range = range(310, 326);
if(is_page($range)){
    // your code..
}

is_page() function can accept array as argument. And range() function return array. This example works fine for me.