The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A120377 Primes of the form 2*11^n-1. 3
241, 428717761 (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.
The n<1000 that yield primes are 2, 8, 248. - T. D. Noe, Nov 16 2006
LINKS
FORMULA
a(n) = n-th number such that 2*11^k-1 that is prime for some k.
a(n) = 2*11^A120378(n)-1. - R. J. Mathar, Mar 06 2010
EXAMPLE
a(1)=241 since 2*11^2-1=241 is the first prime.
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[2*11^Range[1000]-1, PrimeQ] (* T. D. Noe, Nov 16 2006 *)
CROSSREFS
Sequence in context: A207286 A217998 A183891 * A321821 A171242 A259092
KEYWORD
nonn,bref
AUTHOR
Walter Kehowski, Jun 28 2006
EXTENSIONS
Corrected by T. D. Noe, Nov 16 2006
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 June 6 22:00 EDT 2024. Contains 373134 sequences. (Running on oeis4.)