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!)
A062658 Numbers k such that 92^k - 91^k is prime. 0
3, 827, 9439, 27701, 36683 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Terms greater than 1000 are often only strong pseudoprimes.
a(6) > 10^5. - Robert Price, Aug 05 2015
LINKS
MATHEMATICA
Select[Range[0, 10000], If[PrimeQ[#], PrimeQ[92^# - 91^#]] &] (* Robert Price, Aug 05 2015 *)
PROG
(PARI) is_ok(n)=isprime(92^n-91^n);
first(m)=my(v=vector(m), k=3); v[1]=3; for(i=2, m, while(!is_ok(k), k++); print1(k, ", "); v[i]=k; k++; ); v; /* Anders Hellström, Aug 05 2015 */
CROSSREFS
Sequence in context: A287695 A083250 A096086 * A266654 A332183 A000723
KEYWORD
nonn,hard
AUTHOR
Mike Oakes, May 18 2001, May 19 2001
EXTENSIONS
a(4)-a(5) from Robert Price, Aug 05 2015 (Computer run by Adam Marciniec)
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 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)