Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #13 Dec 02 2023 20:14:14
%S 3,7,13,17,19,31,37,41,43,47,53,71,79,89,103,127,131,137,151
%N Records in A092419.
%C The old entry with this sequence number was a duplicate of A049236.
%p A000037 := proc(n) n +floor(1/2+sqrt(n)) ; end: A092419 :=proc(n) local i, k; k := A000037(n) ; for i from 1 do if numtheory[legendre](k, ithprime(i)) = -1 then RETURN(ithprime(i)); fi; od; end: rec := -1 ; for n from 1 do a := A092419(n) ; if a > rec then printf("%d,\n",a) ; rec := a; fi; od: # _R. J. Mathar_, Jul 13 2009
%Y Cf. A092419, A070040.
%K nonn,more
%O 1,1
%A _N. J. A. Sloane_, Oct 16 2008
%E a(8)-a(12) from _R. J. Mathar_, Jul 13 2009
%E a(13)-a(19) from _Sean A. Irvine_, Dec 02 2023