%I #6 Jun 13 2017 12:22:38
%S 0,4,7,10,22,34,40,49,52,64,67,70,82,100,109,115,124,127,139,169,172,
%T 175,184,187,202,214,217,235,244,265,277,280,289,292,295,307,310,325,
%U 349,367,424,454,460,484,487,490,505,517,529,535,547,559,565,589,604
%N Numbers n such that 11*n^2 + 11*n + 3 is prime.
%C Except for 0, all a(n)==1 (mod 3). - _Robert G. Wilson v_, Feb 12 2005
%e If n=0, then 11*(0^2) + 11*0 + 3 = 3 (prime)
%e If n=64, then 11*(64^2) + 11*64 + 3 = 45763 (prime)
%e If n=169, then 11*(169^2) + 11*169 + 3 = 316033 (prime)
%o (PARI) is(n)=isprime(11*n^2+11*n+3) \\ _Charles R Greathouse IV_, Jun 13 2017
%K nonn,easy
%O 1,2
%A _Parthasarathy Nambi_, Feb 03 2005
%E More terms from _Robert G. Wilson v_, Feb 12 2005