OFFSET
1,1
COMMENTS
Cf. A052019 Sum of digits of prime p is substring of p.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..54 (all terms up to the 5 millionth prime)
EXAMPLE
31513 is a term because its digit sum 13 is a substring of 31513.
MATHEMATICA
bb={}; Do[id=IntegerDigits[p=Prime[n]]; If[StringCount[ToString[p], ToString[Plus@@id]]>0&&Reverse[id]==id, AppendTo[bb, p]], {n, 1000000}]; A109208=bb
Select[Prime[Range[300000]], PalindromeQ[#]&&SequenceCount[IntegerDigits[#], IntegerDigits[ Total[ IntegerDigits[ #]]]]>0&] (* Harvey P. Dale, Dec 04 2021 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Zak Seidov, Jun 22 2005
STATUS
approved