OFFSET
0,2
COMMENTS
Similar to A046385, which excludes prime factors that are not base-10 palindromes, i.e. m = n.
EXAMPLE
a(7) = 29792 because it is the smallest number that has a factorization 2^5 * 7^2 * 19 including 7 palindromic prime factors: 2, 2, 2, 2, 2, 7, 7.
A046385(7) = 82728 = 2^3 * 3^3 * 383 is the smallest number with 7 palindromic prime factors and no non-palindromic prime factors.
a(20) = A046385(20) = 677707776 = 2^16 * 3^3 * 383.
PROG
(PARI) is_A002113(n)={Vecrev(n=digits(n))==n};
haspalf(P)={my(x=factor(P), nf=#x[, 2], m=0); for(j=1, nf, if(is_A002113(x[j, 1]), m+=x[j, 2])); m};
for(d=1, 16, for(k=1, oo, if(is_A002113(k), if(haspalf(k)==d, print1(k, ", "); break)))) \\ Hugo Pfoertner, Aug 08 2019 using is_A002113 by M. F. Hasler
CROSSREFS
KEYWORD
nonn,base,hard
AUTHOR
Hugo Pfoertner, Aug 08 2019
EXTENSIONS
More terms from Giovanni Resta, Aug 08 2019
STATUS
approved