|
| |
|
|
A109209
|
|
Palindromic primes pp such that digit sum of pp as substring appears more than once in pp.
|
|
1
| |
|
|
1123211, 1412141, 3228223, 3773773, 7949497, 9495949, 100161001, 101060101, 101141101, 110232011, 111050111, 112030211, 112111211, 113111311, 121111121, 122363221, 122444221, 125252521, 131030131, 131111131, 138313831, 138383831
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Cf. A052019 Sum of digits of prime p is substring of p, A109208 Palindromic primes pp such that digit sum of pp is its substring.
|
|
|
EXAMPLE
| 9495949is OK because its digit sum 49 appears twice in 9495949.
|
|
|
MATHEMATICA
| bb={}; Do[id=IntegerDigits[p=Prime[n]]; If[StringCount[ToString[p], ToString[Plus@@id]]>1&&Reverse[id]==id, AppendTo[bb, p]], {n, 1000000}]; A109209=bb
|
|
|
CROSSREFS
| Cf. A052019, A109208.
Sequence in context: A116175 A059767 A069583 * A100365 A084554 A192104
Adjacent sequences: A109206 A109207 A109208 * A109210 A109211 A109212
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Zak Seidov (zakseidov(AT)yahoo.com), Jun 22 2005
|
| |
|
|