login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Steven Harvey, Williams Primes
H. C. Williams, The primality of certain integers of the form 2Ar^n - 1, Acta Arith. 39 (1981), 7-17.
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
CROSSREFS
Sequence in context: A041513 A135053 A042565 * A342727 A075715 A326735
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 10:13 EDT 2024. Contains 371905 sequences. (Running on oeis4.)