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!)
A273814 Numbers k such that (12^k - 7^k)/5 is prime. 1
2, 3, 7, 13, 47, 89, 139, 523, 1051 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms are prime.
The corresponding primes are 19, 277, 7001653, 21379263273733, 105329145253605843602014309589572596276217801876213, ...
LINKS
MAPLE
A273814:=n->`if`(isprime((12^n - 7^n)/5), n, NULL): seq(A273814(n), n=1..10^3); # Wesley Ivan Hurt, Jun 01 2016
MATHEMATICA
Select[Range[1, 10000], PrimeQ[(12^# - 7^#)/5] &]
PROG
(PARI) for(n=1, 10000, if(isprime((12^n - 7^n)/5), print1(n, ", ")))
CROSSREFS
Sequence in context: A349327 A166945 A257393 * A371131 A361988 A085872
KEYWORD
nonn,more,hard
AUTHOR
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 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)