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

A251259
Numbers n such that 11*12^n + 1 is prime.
2
3, 4, 35, 119, 476, 507, 6471, 13319, 31799
OFFSET
1,1
COMMENTS
a(10) > 2*10^5. - Robert Price, Mar 20 2015
EXAMPLE
11*12^4 + 1 = 228097, which is prime.
MATHEMATICA
Select[Range[0, 1000], PrimeQ[11*12^# + 1] &]
PROG
(Magma) [n: n in [1..600]| IsPrime(11*12^n+1)]; // Vincenzo Librandi, Mar 21 2015
(PARI) is(n)=ispseudoprime(11*12^n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Cf. A079907.
Sequence in context: A246015 A078504 A066090 * A042891 A032835 A102920
KEYWORD
nonn,more
AUTHOR
Robert Price, Mar 20 2015
STATUS
approved