OFFSET
1,1
COMMENTS
If n = p^q, where p is prime and q > 0, then p concatenated with q is in the sequence.
Might be a good "puzzle" sequence - guess the rule given the first ten or so terms.
LINKS
Robert Price, Table of n, a(n) for n = 1..1280
FORMULA
EXAMPLE
n = 3 = 3^1, so (3 concatenated with 1) = 31 is a term.
MATHEMATICA
Map[FromDigits, Select[Table[FactorInteger[i], {i, 2, 10000}],
Length[#] == 1 &], 2] (* Robert Price, Mar 15 2020 *)
PROG
(PARI) for(n=1, 300, fac=factor(n); if(matsize(fac)[1]==1, print1(eval(concat(Str(fac[1, 1]), Str(fac[1, 2]))), ", ")))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Zak Seidov, Dec 04 2005
EXTENSIONS
Edited and extended by Klaus Brockhaus, Jan 21 2006
STATUS
approved