A242272 Numbers n such that n*9^n+1 is semiprime.
1, 8, 12, 16, 20, 50, 208, 254, 282, 342, 350, 386
Offset: 1
Links
- factordb.com, Status of 512*9^512+1.
Programs
-
Magma
IsSemiprime:=func; [n: n in [1..70] | IsSemiprime(s) where s is n*9^n+1];
-
Mathematica
Select[Range[70], PrimeOmega[# 9^# + 1] == 2 &]
Extensions
a(7)-a(12) from Hugo Pfoertner, Aug 05 2019
Comments