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!)
A191469 Numbers n such that 7^n - 6 is prime. 11
2, 3, 6, 9, 21, 25, 33, 49, 54, 133, 245, 255, 318, 1023, 1486, 3334, 6821, 8555, 11605, 42502, 44409, 90291, 92511, 140303 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(14)=1023 and a(15)=1486 correspond to BPSW strong probable primes (passing PARI's ispseudoprime()). - Joerg Arndt, Jun 06 2011
a(25) > 2*10^5. - Robert Price, Nov 14 2014
LINKS
MAPLE
A191469:=n->`if`(isprime(7^n-6), n, NULL): seq(A191469(n), n=1..10^3); # Wesley Ivan Hurt, Nov 14 2014
MATHEMATICA
Select[Range[1, 5000], PrimeQ[7^#-6]&] (* Vincenzo Librandi, Aug 05 2012 *)
PROG
(Magma) [n: n in [1..1000]| IsPrime(7^n-6)]
(PARI) for(n=1, 10^6, if(isprime(7^n-6), print1(n, ", ")))
CROSSREFS
Sequence in context: A321484 A065536 A351261 * A091053 A095064 A323144
KEYWORD
nonn,hard,more
AUTHOR
Vincenzo Librandi, Jun 06 2011
EXTENSIONS
a(17)-a(23) from Robert Price, Jan 24 2014
a(24) from Robert Price, Nov 14 2014
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 March 29 11:43 EDT 2024. Contains 371278 sequences. (Running on oeis4.)