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

A110966
Numbers k such that 23*k^2 + 36 is prime.
1
1, 7, 11, 13, 23, 25, 29, 35, 41, 49, 61, 71, 77, 101, 103, 113, 115, 131, 133, 145, 155, 157, 169, 173, 197, 217, 221, 223, 241, 245, 257, 259, 275, 283, 295, 301, 305, 313, 325, 331, 335, 337, 347, 349, 361, 367, 373, 389, 397, 403, 407, 409, 419, 433, 439
OFFSET
1,2
LINKS
Emre Alkan, Alexandru Zaharescu, Nonvanishing of the Ramanujan tau function in short intervals, International Journal of Number Theory, Vol. 1, No. 1 (2005) 45-51.
EXAMPLE
23*101^2 + 36 = 234659 (prime).
MATHEMATICA
Select[Range[1, 501, 2], PrimeQ[23#^2+36]&] (* Harvey P. Dale, Sep 01 2024 *)
PROG
(Magma) [ n: n in [0..1500] | IsPrime( 23*n^2 + 36) ]; // Vincenzo Librandi, Jan 31 2011
(PARI) is(n)=isprime(23*n^2+36) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A081091 A027901 A129213 * A163388 A297176 A155760
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Sep 26 2005
EXTENSIONS
Edited by Don Reble, Nov 08 2005
STATUS
approved