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!)
A120378 Integers n such that 2*11^n-1 is prime. 6
2, 8, 248, 2474, 2900, 6600, 24746, 105704 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See comments for A057472. Examined in base 12, all n must be even and all primes must be 1-primes. For example, 241 is 181 in base 12.
a(9) > 2*10^5. - Robert Price, Nov 06 2015
LINKS
FORMULA
a(n) = n-th integer k such that 2*11^k-1 is prime.
EXAMPLE
a(1)=2 since 2*11^2-1=241 is the first prime of this form.
MAPLE
for w to 1 do for k from 1 to 2000 do n:=2*11^k-1; if isprime(n) then printf("%d, %d", k, n) fi od od;
MATHEMATICA
Select[Range[0, 200000], PrimeQ[2*11^# - 1] &] (* Robert Price, Nov 06 2015 *)
CROSSREFS
Sequence in context: A125264 A028985 A067583 * A012345 A012341 A299374
KEYWORD
more,nonn
AUTHOR
Walter Kehowski, Jun 28 2006
EXTENSIONS
More terms from Ryan Propper, Jan 14 2008
a(7)-a(8) from Robert Price, Nov 06 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 18 13:50 EDT 2024. Contains 371780 sequences. (Running on oeis4.)