Question 1123296

The pattern is  {{{ a[n] = 5n - 4 }}} , n = 1,2,3, …

{{{ a[1] = 1 }}}
{{{ a[50] = 246 }}}
{{{ a[51] = 251 }}}   <<<—— first number on page 2  <br>

Page number = floor ( n / 50 ) + 1    where floor(x) means truncate x to the closest integer less than or equal to x. <br>

…..
{{{ a[n] = 5n - 4 = 12346 }}}
              {{{ 5n = 12350 }}} 
              {{{   n = 2470 }}}

Page =  floor( 2470/50 ) + 1  =  floor (49.4) + 1 = 49  + 1 = 50<br>

Ans: Page 50 will have the number 12346.