OFFSET
1,1
COMMENTS
All the terms in sequence are semiprimes (product of two primes) which are reversal of some square, ignoring leading zeros.
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..360
EXAMPLE
a(3) = 94 = 2 * 47 which is semiprime. Reversing the digits gives 49 = 7^2.
a(4) = 46 = 2 * 23 which is semiprime. Reversing the digits gives 64 = 8^2.
MAPLE
MATHEMATICA
Select[IntegerReverse[Range[200]^2], PrimeOmega[#]==2&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, May 27 2018 *)
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
K. D. Bajpai, May 04 2014
STATUS
approved