login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A324041
Nonpalindromic integers with palindromic product of divisors.
0
26, 49, 2285, 1109111, 3069307, 12028229, 12866669, 110091011, 10207355549, 11010911011, 11100910111, 13579355059, 30101273647, 30693069307, 111283619361
OFFSET
1,1
COMMENTS
Many terms of A327325 are palindromes, hence this sequence.
Intersection of A029742 and A327325.
a(16) > 3.5*10^11. - Giovanni Resta, Sep 04 2019
EXAMPLE
Divisors of 26 are : 1,2,13,26 and 1*2*13*26=676.
MATHEMATICA
Select[Range[3200000], !PalindromeQ[#] && PalindromeQ[#^(DivisorSigma[0, #]/2)] &] (* Amiram Eldar, Sep 02 2019 *)
PROG
(PARI) ispal(n) = my(d=digits(n)); d == Vecrev(d);
isok(n) = !ispal(n) && ispal(vecprod(divisors(n)));
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Michel Marcus, Sep 02 2019
EXTENSIONS
a(8)-a(15) from Giovanni Resta, Sep 04 2019
STATUS
approved