OFFSET
1,2
COMMENTS
a(21) >= 500. - Hugo Pfoertner, Aug 03 2019
From Kevin P. Thompson, Apr 24 2022: (Start)
a(25) >= 1402.
m=1448 is also a term of this sequence. (End)
LINKS
factordb.com, Status of 3^500+500.
factordb.com, Status of 3^1402+1402.
EXAMPLE
1 is in this sequence because 3^1+1 = 2*2 is semiprime.
14 is in this sequence because 3^14+14 = 283*16901 and these two factors are prime.
MATHEMATICA
Select[Range[130], PrimeOmega[3^# + #]==2 &]
PROG
(Magma) IsSemiprime:=func<i | &+[d[2]: d in Factorization(i)] eq 2>; [m: m in [1..130] | IsSemiprime(s) where s is 3^m+m];
(PARI) first(m)=my(v=vector(m), r=1); for(i=1, m, while(bigomega(3^r + r)!=2, r++); v[i]=r; r++); v; \\ Anders Hellström, Aug 14 2015
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, Dec 22 2014
EXTENSIONS
a(13)-a(16) from Luke March, Jul 18 2015
a(17)-a(20) from Carl Schildkraut, Aug 19 2015
a(21)-a(24) from Kevin P. Thompson, Apr 24 2022
STATUS
approved