This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A077130 #5 Dec 05 2013 19:55:48 %S A077130 5,11,17,13,19,17,23,29,37,31,29,43,41,47,37,59,41,53,59,79,61,53,73, %T A077130 71,89,61,79,71,83,89,79,73,83,103,101,107,97,103,89,113,127,103,97, %U A077130 107,101,131,137,127,109,131,113,149,127,179,131,149,179,167,139,149 %N A077130 Smallest number which is relatively prime to all the numbers between n^2 and (n+1)^2, inclusive. %C A077130 Naturally every member is a prime. %e A077130 a(5) = 19 is the smallest number coprime to all the numbers from 25 to 36. %o A077130 (PARI) for(k=1,100,a=0:forprime(p=2,10001,f=0:for(l=k*k,(k+1)^2,if(gcd(p,l)>1,f=1:break)): if(!f,a=p:break)): if(a,print1(a","),print1("-,"))) %Y A077130 Cf. A077128, A077129. %K A077130 nonn %O A077130 1,1 %A A077130 _Amarnath Murthy_, Oct 29 2002 %E A077130 Corrected and extended by _Ralf Stephan_, Mar 19 2003