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”).

A083867
a(n) is the number of divisors of the n-th decimal palindrome that are palindromes.
3
1, 2, 2, 3, 2, 4, 2, 4, 3, 2, 4, 4, 6, 4, 8, 4, 8, 6, 2, 3, 3, 2, 3, 2, 3, 4, 2, 2, 4, 4, 6, 5, 6, 8, 4, 5, 6, 4, 4, 2, 2, 5, 3, 2, 6, 2, 2, 4, 6, 6, 6, 4, 8, 3, 6, 5, 9, 3, 4, 3, 5, 3, 3, 5, 3, 3, 5, 4, 8, 11, 4, 7, 4, 5, 9, 4, 5, 8, 4, 3, 2, 3, 4, 2, 2, 5, 2, 2, 8, 3, 8, 3, 7, 9, 6, 3, 10, 3, 6, 2, 2, 4, 2, 3, 4
OFFSET
1,2
EXAMPLE
n=45, divisors of A002113(45)=363 are {1,3,11,33,121,363}, all are palindromes, therefore a(45)=A076888(45)=6.
n=72, divisors of A002113(72)=636 are {1,2,3,4,6,12,53,106,159,212,318,636}, 7 of them are palindromes {1,2,3,4,6,212,636}, therefore a(72)=7 < A076888(72)=12.
MATHEMATICA
ndp[n_]:=Count[Divisors[n], _?(PalindromeQ[#]&)]; ndp/@Select[Range[ 2000], PalindromeQ] (* Harvey P. Dale, Oct 29 2022 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, May 07 2003
STATUS
approved