OFFSET
1,1
LINKS
Shyam Sunder Gupta, Table of n, a(n) for n = 1..1713
EXAMPLE
442619 is in the sequence because 442619,442633 and 442691 are consecutive primes and the product of the digits of each = 1728.
MATHEMATICA
a = {}; m = 1; s = 1; Do[ If[(y = Apply[Times, IntegerDigits[x = Prime[n]]]) == s && s != 0, m = m + 1; If[m > 2, AppendTo[a, Prime[n - 2]]], m = 1]; s = y, {n, 1, 100000}]; a
Transpose[Select[Partition[Prime[Range[23*10^5]], 3, 1], Times@@ IntegerDigits[ #[[1]]]==Times@@IntegerDigits[#[[2]]] == Times@@ IntegerDigits[#[[3]]]>0&]][[1]] (* Harvey P. Dale, Apr 05 2016 *)
pdeQ[{a_, b_, c_}]:=Module[{un=Union[Times@@@IntegerDigits[{a, b, c}]]}, un != {0} && Length[un]==1]; Select[Partition[Prime[Range[23*10^5]], 3, 1], pdeQ][[All, 1]] (* Harvey P. Dale, Feb 01 2022 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Shyam Sunder Gupta, Oct 08 2013
STATUS
approved