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

A079907
Numbers n such that 11*12^n -1 is prime.
15
1, 2, 21, 25, 33, 54, 78, 235, 1566, 2273, 2310, 4121, 7775, 42249, 105974, 138961
OFFSET
1,2
COMMENTS
a(17) > 2*10^5. - Robert Price, Mar 20 2015
REFERENCES
R. K. Guy, Unsolved Problems in Theory of Numbers, Section A3.
LINKS
MATHEMATICA
Do[ If[ PrimeQ[11*12^n - 1], Print[n]], {n, 1, 2000}]
Select[Range[10000], PrimeQ[(11 12^# - 1)] &] (* Vincenzo Librandi, Mar 21 2015 *)
PROG
(PARI) for(n=1, 2000, if(isprime(11*12^n-1), print1(n, ", ")))
(Magma) [n: n in [1..600]| IsPrime(11*12^n - 1)]; // Vincenzo Librandi, Mar 21 2015
KEYWORD
nonn,hard
AUTHOR
Robert G. Wilson v, Jan 16 2003
EXTENSIONS
More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 05 2008
a(13)-a(16) from Robert Price, Mar 20 2015
STATUS
approved