OFFSET
1,1
EXAMPLE
63109 is an element of this sequence because A103373(91) = 63109 and 63109 is semiprime because 63109 = 223 * 283 where both 223 and 283 are primes.
MATHEMATICA
SemiprimeQ[n_] := Plus @@ FactorInteger[n][[All, 2]] == 2; k = 5; Do[a[n] = 1, {n, k + 1}]; a[n_] := a[n] = a[n - k] + a[n - k - 1]; Union[Select[Array[a, 170], SemiprimeQ]]
Select[LinearRecurrence[{0, 0, 0, 0, 1, 1}, {1, 1, 1, 1, 1, 1}, 200], PrimeOmega[ #] == 2&]//Union (* Harvey P. Dale, Jul 20 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Feb 03 2005
EXTENSIONS
Edited and extended by Ray Chandler and Robert G. Wilson v, Feb 06 2005
STATUS
approved