OFFSET
1,2
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..10000
EXAMPLE
4 is in this sequence because [[5/2], [15/2]] contains the primes 2,3,5,7, while [[4/2], [12/2]] contains the primes 2,3,5.
MAPLE
with(numtheory): isA229990 := proc(n) return pi(floor(3*(n+1)/2))-pi(floor((n+1)/2)-1) > pi(floor(3*n/2))-pi(floor(n/2)-1): end proc: seq(`if`(isA229990(n), n, NULL), n=1..252); # Nathaniel Johnston, Oct 11 2013
MATHEMATICA
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Oct 09 2013
STATUS
approved