OFFSET
1,1
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..500
MATHEMATICA
Table[d = 8; i = 1;
While[ x = IntegerDigits[Prime[i]];
x != Reverse[x] || Count[x, d] != n , i++];
FromDigits[x], {n, 1, 5}] (* Robert Price, Mar 25 2019 *)
Module[{prs=Select[Prime[Range[105*10^5]], PalindromeQ]}, Table[ SelectFirst[ prs, DigitCount[ #, 10, 8]==n&], {n, 6}]] (* The program generates the first 6 terms of the sequence. *) (* Harvey P. Dale, May 11 2022 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 21 2003
EXTENSIONS
Corrected and extended by Giovanni Resta, Feb 08 2006
STATUS
approved