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!)
A182373 Positive integers k such that k*3^k - 2 is prime. 1
3, 5, 7, 37, 45, 53, 179, 277, 721, 2087, 6197, 6317, 8775, 12781, 38943, 47273, 50507 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Similar to A060353, and to the Woodall primes, A050918. The next term in the sequence is unknown; if the sequence is infinite, the next term is greater than 5000.
a(15) > 30000. - Tyler NeSmith, Apr 22 2022
LINKS
EXAMPLE
79 = 3*3^3 - 2; 1213 = 5*3^5 - 2; 15307 = 7*3^7 - 2.
MAPLE
#choose N large, then S is the desired set
f:=n->n*3^n - 2:
S:={}:
for n from 0 to N do if(isprime(f(n))) then S:=S union {n}: fi: od
MATHEMATICA
Select[Range[2100], PrimeQ[#*3^# - 2] &] (* Jayanta Basu, Jun 01 2013 *)
PROG
(PARI) for(n=1, 1e6, if(ispseudoprime(3^n*n - 2), print1(n, ", "))) \\ Altug Alkan, Dec 01 2015
CROSSREFS
Sequence in context: A154544 A155034 A126359 * A087363 A234569 A037287
KEYWORD
nonn,more
AUTHOR
Patrick Devlin, Apr 26 2012
EXTENSIONS
a(11)-a(14) from Altug Alkan, Dec 01 2015
a(15)-a(17) from Michael S. Branicky, Apr 23 2023
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 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)