A242269 Numbers n such that n*6^n+1 is semiprime.
3, 5, 11, 12, 18, 20, 21, 24, 25, 35, 43, 45, 53, 58, 61, 71, 73, 75, 123, 124, 140, 147, 157, 205, 208, 233, 243, 245, 293, 301
Offset: 1
Links
- factordb.com, Status of 436*6^436+1.
Programs
-
Magma
IsSemiprime:=func; [n: n in [1..435] | IsSemiprime(s) where s is n*6^n+1];
-
Mathematica
Select[Range[435], PrimeOmega[# 6^# + 1] == 2 &]
-
PARI
is(n)=bigomega(n*6^n+1)==2 \\ Anders Hellström, Aug 28 2015
Extensions
a(19)-a(30) from Carl Schildkraut, Aug 28 2015
Comments