login

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”).

A067073
Records in A092419.
2
3, 7, 13, 17, 19, 31, 37, 41, 43, 47, 53, 71, 79, 89, 103, 127, 131, 137, 151
OFFSET
1,1
COMMENTS
The old entry with this sequence number was a duplicate of A049236.
MAPLE
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
CROSSREFS
Sequence in context: A040999 A172240 A129901 * A323579 A124273 A038923
KEYWORD
nonn,more
AUTHOR
N. J. A. Sloane, Oct 16 2008
EXTENSIONS
a(8)-a(12) from R. J. Mathar, Jul 13 2009
a(13)-a(19) from Sean A. Irvine, Dec 02 2023
STATUS
approved