OFFSET
1,2
COMMENTS
The subsequence which are themselves primes begins: 5, 29, 2309, 4615105109, 2518373770712229494528309. - Jonathan Vos Post, Feb 09 2011
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..199
MATHEMATICA
palQ[n_]:=Module[{idn=IntegerDigits[n]}, idn==Reverse[idn]]; #-1&/@Rest[ FoldList[ Times, 1, Select[Prime[Range[200]], palQ]]] (* Harvey P. Dale, Jun 21 2011 *)
FoldList[Times, Select[Prime[Range[100]], PalindromeQ]]-1 (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 29 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Corrected and extended by Larry Reeves (larryr(AT)acm.org), Sep 25 2000
Corrected by D. S. McNeil, Aug 20 2010
STATUS
approved