OFFSET
1,1
LINKS
Erich Leistenschneider, Table of n, a(n) for n = 1..4095
Erich Lestenschneider's Article about this sequence (in Portuguese).
Erich Leistenschneider, Program used to generate the sequence (Linux)
Erich Leistenschneider, First 4095 numbers of the sequence
EXAMPLE
2531 is a member of this sequence because it is a prime number and the product of its digits is 2*5*3*1 = 30 and the sum of the digits of this result is 3+0 = 3, which is also a prime number.
MAPLE
a:=proc(n) local dn, pr, dpr: dn:=convert(n, base, 10): pr:=mul(dn[i], i=1..nops(dn)): dpr:=convert(pr, base, 10): if isprime(n)=true and isprime(add(dpr[j], j= 1..nops(dpr)))=true then n else end if end proc: seq(a(n), n=1..1600); # Emeric Deutsch, Mar 01 2008
MATHEMATICA
Select[Prime[Range[300]], PrimeQ[Total[IntegerDigits[Times@@ IntegerDigits[#]]]]&] (* Harvey P. Dale, Dec 15 2011 *)
PROG
(PARI) isok(p) = isprime(p) && isprime(sumdigits(vecprod(digits(p)))); \\ Michel Marcus, Jan 16 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Erich Leistenschneider (el(AT)erichl.net), Feb 01 2008
STATUS
approved