The value is likely causing an overflow in code attempting to obtain an alphanumeric string from the page number (perhaps as a key for caching or DB purposes).
Code like '
base_convert( 0x38E38E38E38E38F, 10, 36);' can be used to obtain a string of characters in '0123456789abcdefghijklmnopqrstuvwxyz'.
On a 64-bit system, PHP_INT_MAX == 2^63 == 9223372036854775807
9223372036854775807 / 36 = 256204778801521550 (0x38E38E38E38E38E)
Take one off because pages start at one, and you have your limit.